| Author |
Error inserting byte[] to Oracle BLOB
|
Manju Gannaboina
Greenhorn
Joined: Mar 21, 2006
Posts: 1
|
|
Hi, I am getting an error when I try to insert a byte[] into BLOB column. The error message is : [BEA][Oracle JDBC Driver]long (>4k) parameters are only allowed in the values list of simple insert/update statements // below is the lines of code private byte[] fileData; PreparedStatement stmt = conn.prepareStatement("INESRT INTO test VALUES ( 1, ?)" ); stmt.setBytes(1, this.fileData); int testIDID = stmt.executeUpdate(); Can anyone help me here. Thanks in advance Manju
|
 |
 |
|
|
subject: Error inserting byte[] to Oracle BLOB
|
|
|