sql >> Base de Datos >  >> RDS >> Oracle

¿Cómo insertar un archivo enorme en BLOB (Oracle) sin cargar el archivo completo en la memoria?

Para los que están por ahí...

Este es el proceso para hacerlo:

stmt.execute ("INSERT INTO my_blob_table VALUES ('row1', empty_blob())");
BLOB blob;
cmd = "SELECT * FROM my_blob_table WHERE X='row1' FOR UPDATE";
ResultSet rset = stmt.executeQuery(cmd);
rset.next();
BLOB blob = ((OracleResultSet)rset).getBLOB(2);
File binaryFile = new File("john.gif");
System.out.println("john.gif length = " + binaryFile.length());
FileInputStream instream = new FileInputStream(binaryFile);
OutputStream outstream = blob.setBinaryStream(1L);
int size = blob.getBufferSize();
byte[] buffer = new byte[size];
int length = -1;

Fuente:http://docs.oracle.com /cd/B19306_01/java.102/b14355/oralob.htm#CHDFHHHG