> Hi:
> I need to update a CLOB field in a table with JDBC, using Oracle. Here
[quoted text clipped - 18 lines]
>
> Sot what do I do with the clob in order to update the row?
createStatement() with no parameters produces resultsets that are read only. Use the 2
int parameter version of createStatment() to get updatable resultsets (from it).
Also, I think you'll need to do:
rs.updateClob(2, clob);
after you change the clob and before you do updateRow().
I don't know Oracle in this area. All the above is just straight JDBC info that you can
get from the Sun's docs.

Signature
Lee Fesperman, FirstSQL, Inc. (http://www.firstsql.com)
==============================================================
* The Ultimate DBMS is here!
* FirstSQL/J Object/Relational DBMS (http://www.firstsql.com)