All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.ydb.jdbc.YdbResultSetMetaData Maven / Gradle / Ivy

There is a newer version: 2.3.5
Show newest version
package tech.ydb.jdbc;

import java.sql.ResultSetMetaData;
import java.sql.SQLException;

import tech.ydb.table.values.Type;

public interface YdbResultSetMetaData extends ResultSetMetaData {

    /**
     * Returns native YDB type for column
     *
     * @param column column, 1..N
     * @return YDB type
     * @throws java.sql.SQLException
     */
    Type getYdbType(int column) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy