Method setNull(int paramIndex, int sqlType, String typeName)
Return type: void
Member of:
java.sql.PreparedStatement
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException { _stmt.setNull( paramIndex, sqlType, typeName); }
2
public void setNull (int paramIndex, int sqlType, String typeName) throws SQLException { checkOpen(); _stmt.setNull(paramIndex,sqlType,typeName);}
3
_cs.setNull(p1, p2, p3);
4
prepStmtPassthru.setNull(p0,p1,p2);
5
delegate_.setNull( paramIndex, sqlType, typeName );
6
preparedStatement.setNull(paramIndex, sqlType, typeName);
7
ps.setNull(paramIndex, sqlType, typeName);
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.