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

I am not able to call setNull on PreparedStatement using MS Access (sun.jdbc.odbc.JdbcOdbcDriver)

preparedStatement.setNull(index, sqltype). Is there a workaround for this.

For LONGBINARY data type, I tried the following calls, neither worked.

 setNull(index, java.sql.Types.VARBINARY)
 setNull(index, java.sql.Types.BINARY)
java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]Invalid SQL data type
        at sun.jdbc.odbc.JdbcOdbc.createSQLException(JdbcOdbc.java:6957)
        at sun.jdbc.odbc.JdbcOdbc.standardError(JdbcOdbc.java:7114)
        at sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterNull(JdbcOdbc.java:986)
        at sun.jdbc.odbc.JdbcOdbcPreparedStatement.setNull(JdbcOdbcPreparedStatement.java:363)

share|improve this question
Have you checked the table in access/jet to make sure it allows null values to be entered? – Kevin Ross Jun 11 '10 at 7:16

2 Answers

The Sun JDBC ODBC bridge driver has a lot of odd bugs/flaws and I personally have never used it extensively, so here's a shoot in the dark: what if you just set it with a real null?

preparedStatement.setBinaryStream(index, null);

For the better MS Access driver, have a look at HXTT.

share|improve this answer
Thanks, setting real null did not work either. java.lang.AbstractMethodError: org.postgresql.jdbc3.Jdbc3PreparedStatement.setBinaryStream(ILjava/io/InputStrea‌​m;)V looks like it is looking for a valid binary stream. I'll be checking out HXTT. – Firat Jun 11 '10 at 18:37
This error means that the method is not implemented in the ODBC bridge driver. Try setBytes() instead, or if in vain setObject(). The HXTT driver is excellent, it only costs a bit of $$$. – BalusC Jun 11 '10 at 18:55

I saw a similar error once when I was sending a SQL query with 2 conditions in the where clause. One of the conditions needed to be quoted. It was a number in varchar format. The MSSQL server required that the condition be quoted or else I saw the error You got in your question.

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.