Package org.hsqldb_voltpatches.types

Examples of org.hsqldb_voltpatches.types.Type


     */
    public int getColumnType(int column) throws SQLException {

        checkColumn(column);

        Type type = resultMetaData.columnTypes[--column];

        return type.getJDBCTypeCode();
    }
View Full Code Here


     */
    public String getColumnTypeName(int column) throws SQLException {

        checkColumn(column);

        Type type = resultMetaData.columnTypes[--column];

        return type.getNameString();
    }
View Full Code Here

     */
    public String getColumnClassName(int column) throws SQLException {

        checkColumn(column);

        Type type = resultMetaData.columnTypes[--column];

        return type.getJDBCClassName();
    }
View Full Code Here

TOP

Related Classes of org.hsqldb_voltpatches.types.Type

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.