Example usage for java.sql JDBCType BOOLEAN

List of usage examples for java.sql JDBCType BOOLEAN

Introduction

In this page you can find the example usage for java.sql JDBCType BOOLEAN.

Prototype

JDBCType BOOLEAN

To view the source code for java.sql JDBCType BOOLEAN.

Click Source Link

Document

Identifies the generic SQL type BOOLEAN .

Usage

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;
}