> All java.sql.Clob 'update' methods (setString, > setCharacterStream, etc)|| > throw 'unimplemented' exceptions, is there a way ?
LONG columns can't be updated through the Clob and Blob interfaces. Use a PreparedStatement with an INSERT or UPDATE and use setString or setCharacterStream for the parameter corresponding to the LONG column. This means that you have to replace the whole LONG, you cannot overwrite parts. Daniel Dittmar -- Daniel Dittmar SAP DB, SAP Labs Berlin [EMAIL PROTECTED] http://www.sapdb.org/ _______________________________________________ sapdb.general mailing list [EMAIL PROTECTED] http://listserv.sap.com/mailman/listinfo/sapdb.general
