Skip to Content.
Sympa Menu

freetds - Re: getPrecision not implemented?

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "Greg Matthews" <gmatthews AT flex.com.au>
  • To: freetds
  • Subject: Re: getPrecision not implemented?
  • Date: Mon, 22 Mar 1999 18:6:56



Modifying the ResultSetMetaData method, getPrecision
to the following makes the exception go away.

public int getPrecision(int column) throws SQLException
{
//throw new SQLException("Not implemented (getPrecision)");
return columnsInfo.getPrecision(column);
}


Craig, what are the current plans to
i) implement all the unimplemented methods?
ii) make the driver Java2 compatible?

Cheers,
Greg.




Archive powered by MHonArc 2.6.24.

Top of Page