Subject | Re: Whether is JayBird just a lot of "not yet implemented" methods ? |
---|---|
Author | Roman Rokytskyy |
Post date | 2003-03-09T13:18:22Z |
> And now, take a look at FBPreparedStatement.java, FBField.java.FBField.java is an abstract class. By default it throws these
> A _lot of methods simply throws new SQLException("not yet
> implemented").
exceptions, and all subclasses implement only these methods that are
allowed by JDBC specification.
In FBPreparedStatement.java unimplemented features are batches (not
directly supported by server), refs (not supported by server), clobs
(not supported by server) and arrays (not yet implemented). All other
unimplemented methods are JDBC 3.0.
> For example, FBPreparedStatement.setDate() just throws newSorry, you are doing something wrong. See JDBC specification for a
> SQLException("Error converting to date."), so I am
> unable to perform such simple operation :(( - I can't believe that !
list of possible conversions (page B-181 of JDBC 3.0 specification).
There exist automatic conversion between java.sql.Date and
java.sql.Timestamp and java.sql.Date and java.lang.String. All other
conversions are not allowed. If you try to convert a different type,
and this is supported by some driver, you rely on non-JDBC
functionality.
> Q 1: What I should to do, in order to insert row in a db table whichUse PreparedStatement.setDate(), PreparedStatement.setTimestamp() or
> contains DATE column (for example) ?
PreparedStatement.setString() methods. Also you can use
PreparedStatement.setObject() passing the java.sql.Date instance.
> Q2: (more complicated): how I can to 'explain' that, in a way,See your J2EE server documentation on specifying mapping for CMP
> which my J2EE server can 'understand'
> (he uses PreparedStatement) ?
beans. This is not driver issue.
> Q3: (more important) : Whether exists a 'real' JDBC driver (otherJayBird is the most JDBC 2.0 compliant driver for Firebird. For
> than interClient & JayBird) for the Firebird/Interbase RDBMS ,
> which really implements a full set of JDBC 2.0 methods ?
InterBase you can check InterClient 2.5 or InterClient 3.0. Note,
they are not free.
Best regards,
Roman Rokytskyy