Re: connect j 3.0.15 ga has no implimentation of many functions of result set
Posted by: Mark Matthews
Date: November 01, 2004 10:41AM

Chethan,

MySQL doesn't have reference types or arrays, so the JDBC driver can't possibly implement those methods that deal with them (set/get/updateArray() and set/get/updateRef()). In fact they're not required to be implemented by the JDBC specification if the target database does not have those types.

The other functions require true scrollable cursors (rowInserted(), rowDeleted(), rowUpdated()), which again, MySQL doesn't have. Also, JDBC drivers are not required to implement scrollable result sets at all, and most RDBMS vendors don't implement rowInserted(), rowDeleted() or rowUpdated(), or if they do, they're very limited in functionality.

Do you actually need any of that functionality, or are you just concerned that the driver doesn't implement those methods (even though you might not need to use them?)

-Mark

Options: ReplyQuote


Subject
Written By
Posted
Re: connect j 3.0.15 ga has no implimentation of many functions of result set
November 01, 2004 10:41AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.