java.sql
Interface SQLType
-
All Known Implementing Classes:
-
JDBCTypes
-
public interface SQLType
An object that is used to identify a generic SQL type, called a JDBC type or a vendor specific data type.
-
Since:
- 1.8
Method Summary |
java.lang.String | getName()
Returns the name of the data type. |
java.lang.String | getVendor()
Returns the name of the vendor that supports this data type. |
java.lang.Integer | getVendorTypeNumber()
Returns the vendor specific type number for the data type. |
getName
java.lang.String getName()
- Returns the name of the data type.
-
-
Returns:
- The name of the data type.
getVendor
java.lang.String getVendor()
- Returns the name of the vendor that supports this data type. The value returned typically is the package name for this vendor.
-
-
Returns:
- The name of the vendor for this data type
getVendorTypeNumber
java.lang.Integer getVendorTypeNumber()
- Returns the vendor specific type number for the data type.
-
-
Returns:
- An Integer representing the vendor specific data type
Java is a trademark or registered trademark of Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A All Rights Reserved.