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

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

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

import java.sql.ParameterMetaData;
import java.sql.SQLException;


public interface YdbParameterMetaData extends ParameterMetaData {
    /**
     * Returns parameter name by it's index
     *
     * @param param parameter (1..N)
     * @return parameter name
     * @throws SQLException if parameter index is invalid
     */
    String getParameterName(int param) throws SQLException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy