List of usage examples for java.sql DatabaseMetaData typeNoNulls
int typeNoNulls
To view the source code for java.sql DatabaseMetaData typeNoNulls.
Click Source Link
NULL
value is NOT allowed for this data type. From source file:com.tesora.dve.db.NativeType.java
public NativeType isNullable(boolean nullable) { setNullability((short) (nullable ? DatabaseMetaData.typeNullable : DatabaseMetaData.typeNoNulls)); return this; }