Field NULL
Field type: int
Member of:
java.sql.Types
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
writeType(Types.NULL);
2
_ps.setNull(_ind, Types.NULL); // TODO: really should be Types.BOOLEAN, but that wasn't introduced until Java 1.4... hmmm what to do?
3
pstmt.setNull(index++, Types.NULL);
4
pstmt.setNull(index++, Types.NULL);
5
setType("NULL", Types.NULL);
6
,{"NULL", new Integer(java.sql.Types.NULL) }
7
case Types.NULL:
8
case(Types.NULL) :lrvClass = Object.class;break;
9
case java.sql.Types.NULL:
10
stmt.setNull(i++, Types.NULL);
11
case Types.NULL:
12
case Types.NULL:
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.