Example usage for Java java.sql JDBCType fields, constructors, methods, implement or subclass
The text is from its open source code.
JDBCType | INTEGER Identifies the generic SQL type INTEGER . |
JDBCType | BIGINT Identifies the generic SQL type BIGINT . |
JDBCType | REAL Identifies the generic SQL type REAL . |
JDBCType | DOUBLE Identifies the generic SQL type DOUBLE . |
JDBCType | NUMERIC Identifies the generic SQL type NUMERIC . |
JDBCType | CHAR Identifies the generic SQL type CHAR . |
JDBCType | VARCHAR Identifies the generic SQL type VARCHAR . |
JDBCType | LONGVARCHAR Identifies the generic SQL type LONGVARCHAR . |
JDBCType | DATE Identifies the generic SQL type DATE . |
JDBCType | TIME Identifies the generic SQL type TIME . |
JDBCType | TIMESTAMP Identifies the generic SQL type TIMESTAMP . |
JDBCType | BINARY Identifies the generic SQL type BINARY . |
JDBCType | VARBINARY Identifies the generic SQL type VARBINARY . |
JDBCType | LONGVARBINARY Identifies the generic SQL type LONGVARBINARY . |
JDBCType | BOOLEAN Identifies the generic SQL type BOOLEAN . |
JDBCType | NCHAR Identifies the generic SQL type NCHAR . |
JDBCType | NVARCHAR Identifies the generic SQL type NVARCHAR . |
JDBCType | LONGNVARCHAR Identifies the generic SQL type LONGNVARCHAR . |
String | getName() |
Integer | getVendorTypeNumber() Returns the vendor specific type number for the data type. |
JDBCType | valueOf(int type) Returns the JDBCType that corresponds to the specified Types value |