Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a java stored procedure that I am trying to insert a byte[] array into an oracle blob field in a table.

I create a prepared statement as follows but it will randomly fail when I execute the prepared statement. I have narrowed down that the issue is coming from the pstmt.setBytes(4,content). The error I get is ORA-01460: unimplemented or unreasonable conversion requested.

private static void insertFile(Connection connOracle, int zipFileId, byte[] data, String filepath, String filename ) throws SQLException {

try 
{
    String QUERY = "INSERT INTO files(file_id, zip_file_id, filename, file_path, content) VALUES(SEQ_FILE_ID.nextval,?,?,?,?)";

    PreparedStatement pstmt = connOracle.prepareStatement(QUERY);

    pstmt.setInt(1,zipFileId);
    pstmt.setString(2, filename);
    pstmt.setString(3, filepath);
    pstmt.setBytes(4, data);

    System.out.println("INSERTING file_id " + filepath + ", " + filename + " INTO DATABASE");

    pstmt.execute();
    pstmt.close();
}
catch (SQLException e)
{
    throw new SQLException(e.getMessage());  
}
share|improve this question
Does it happen when content is null or an empty string? – Klas Lindbäck Oct 17 '11 at 13:12
no, if I comment out the 4th param then everything works great. – medium Oct 17 '11 at 13:30
Deleted my answer now that the question has been corrected... is data non-null? – Jon Skeet Oct 17 '11 at 13:31
I meant: Does it happen when data is null or an empty string? – Klas Lindbäck Oct 17 '11 at 13:32
no it will not happen if data is null, it only happens when there is content in the byte[] array – medium Oct 17 '11 at 13:54
show 1 more comment

1 Answer

try with the below code, this should work for you :-

Blob blobValue = new SerialBlob(data);
pstmt.setBlob(4, blobValue);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.