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

I'm trying to insert an image file (.png,200KB) into Sql sever (columb type varbinary(max)) via jdbc type 4 (microsoft jdbc 3.0), here is my code:

            crsi.moveToInsertRow();                
            crsi.updateInt(1, Integer.parseInt(txt_TargetID.getText()));
            crsi.updateBinaryStream(2, fis,f.length());
            crsi.updateString(3, txt_Name.getText());
            crsi.updateString(4, btng_Gender.getSelection().getActionCommand());
            crsi.updateString(5, dpk_Birthdate.getSelectedDateAsText());
            crsi.updateString(6, txt_IdenNo.getText());
            crsi.updateString(7, dpk_RecordDate.getSelectedDateAsText());
            crsi.insertRow();
            crsi.moveToCurrentRow();
            crsi.acceptChanges(); 

crsi is cachedrowsetimpl object,fis is Fileinputstream object
Every going right, the columns get inserted, except the image column remain NULL. What going wrong?

share|improve this question

1 Answer

up vote 0 down vote accepted

Ok, i've solved this question. I should have enabled FILESTREAM in SQL server , also must have a Filestream group database,in which must have rowguiid and uniqueindentifier column.

Furthermore i can't use cachedrowset to upload filestream but i must use preparestatement to upload filestream.(cachedrowset will cause sync conflict)

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.