Java PreparedStatement provides a possibility to explicitely set a Null value. This possibility is:
prepStmt.setNull(<n>, Types.VARCHAR)
Are the semantics of this call the same as when using a setType with a null value?
prepStmt.setString(null)
?