Jeremiah Jahn wrote:

>shouldn't this work?
>
>       insertPreparedStatement.setNull(5,Types.NULL); where column is a
>timestamp column.
>  
>
You would want to do it like this:

insertPreparedStatement.setNull(5,Types.TIMESTAMP); 

The type should be the type of the column.

Kathey


Reply via email to