Subject | Re: [Firebird-Java] PreparedStatement, setInt() and NULL |
---|---|
Author | Roman Rokytskyy |
Post date | 2008-08-05T13:23:53Z |
> How can I insert a NULL-value into an Integer column?Use either setObject(...) or setNull(...) method.
>
> pstmt.setInt(1, Null) fails since setInt expects a primitive "int", which can
> not be null, but only 0 or 1.
>
> How do others get their NULLs into the database?
Roman