List of usage examples for java.sql JDBCType BOOLEAN
JDBCType BOOLEAN
To view the source code for java.sql JDBCType BOOLEAN.
Click Source Link
From source file:org.tec.webapp.jdbc.entity.support.Parameter.java
/** * BOOLEAN type ctor add an Boolean parameter * @param data the Boolean data//from w w w . j a va2s . com */ public Parameter(Boolean data) { this.mData = data; this.mType = JDBCType.BOOLEAN; }