tech.ydb.jdbc.YdbDatabaseMetaData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ydb-jdbc-driver Show documentation
Show all versions of ydb-jdbc-driver Show documentation
JDBC Driver over YDB Java SDK
package tech.ydb.jdbc;
import java.sql.DatabaseMetaData;
import java.sql.SQLException;
public interface YdbDatabaseMetaData extends DatabaseMetaData {
String QUOTE_IDENTIFIER = "`";
@Override
YdbConnection getConnection() throws SQLException;
}