Java PreparedStatement provides the ability to explicitly set the value to Null. This feature:
prepStmt.setNull(<n>, Types.VARCHAR)
Are the semantics of this call the same as using setType with a null value?
prepStmt.setString(null)
?
java jdbc prepared-statement
paweloque Aug 31 '09 at 13:18 2009-08-31 13:18
source share