Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> updatable resultset
How can I update the value of an CLOB type column without using updatable
resultset? Is it possible to do it in following way :
String clobval = "Z....................."; PreparedStatement stmt = con.prepareStatement("Update TableName set clobfield= ? where ....."); stmt.setXXXX(1, clobval); stmt.executeUpdate();
Thanks.
Chris
Received on Wed Oct 31 2001 - 23:01:17 CST
![]() |
![]() |