public class YdbConnectionImpl extends Object implements YdbConnection
TRANSACTION_NONE, TRANSACTION_READ_COMMITTED, TRANSACTION_READ_UNCOMMITTED, TRANSACTION_REPEATABLE_READ, TRANSACTION_SERIALIZABLE| Constructor and Description |
|---|
YdbConnectionImpl(YdbContext context) |
| Modifier and Type | Method and Description |
|---|---|
void |
abort(Executor executor) |
void |
clearWarnings() |
void |
close() |
void |
commit() |
Array |
createArrayOf(String typeName,
Object[] elements) |
Blob |
createBlob() |
Clob |
createClob() |
NClob |
createNClob() |
SQLXML |
createSQLXML() |
YdbStatement |
createStatement() |
YdbStatement |
createStatement(int resultSetType,
int resultSetConcurrency) |
YdbStatement |
createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
Struct |
createStruct(String typeName,
Object[] attributes) |
List<tech.ydb.table.result.ResultSetReader> |
executeDataQuery(String yql,
YdbValidator validator,
int timeout,
boolean poolable,
tech.ydb.table.query.Params params)
Explicitly execute query as a data query
|
ExplainedQuery |
executeExplainQuery(String yql,
YdbValidator validator)
Explicitly explain this query
|
tech.ydb.table.result.ResultSetReader |
executeScanQuery(String yql,
YdbValidator validator,
tech.ydb.table.query.Params params)
Explicitly execute query as a scan query
|
void |
executeSchemeQuery(String yql,
YdbValidator validator)
Explicitly execute query as a schema query
|
boolean |
getAutoCommit() |
String |
getCatalog() |
Properties |
getClientInfo() |
String |
getClientInfo(String name) |
YdbContext |
getCtx() |
int |
getHoldability() |
YdbDatabaseMetaData |
getMetaData() |
int |
getNetworkTimeout() |
String |
getSchema() |
int |
getTransactionIsolation() |
Map<String,Class<?>> |
getTypeMap() |
SQLWarning |
getWarnings() |
String |
getYdbTxId()
Return current YDB transaction, if exists
|
boolean |
isClosed() |
boolean |
isReadOnly() |
boolean |
isValid(int timeout) |
boolean |
isWrapperFor(Class<?> iface) |
String |
nativeSQL(String sql) |
CallableStatement |
prepareCall(String sql) |
CallableStatement |
prepareCall(String sql,
int resultSetType,
int resultSetConcurrency) |
CallableStatement |
prepareCall(String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
YdbPreparedStatement |
prepareStatement(String sql)
Prepares statement depending on driver settings
|
YdbPreparedStatement |
prepareStatement(String sql,
int autoGeneratedKeys) |
YdbPreparedStatement |
prepareStatement(String sql,
int[] columnIndexes) |
YdbPreparedStatement |
prepareStatement(String sql,
int resultSetType,
int resultSetConcurrency) |
YdbPreparedStatement |
prepareStatement(String origSql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
YdbPreparedStatement |
prepareStatement(String sql,
String[] columnNames) |
YdbPreparedStatement |
prepareStatement(String sql,
YdbPrepareMode mode)
Prepares statement with explicit configuration
|
void |
releaseSavepoint(Savepoint savepoint) |
void |
rollback() |
void |
rollback(Savepoint savepoint) |
void |
setAutoCommit(boolean autoCommit) |
void |
setCatalog(String catalog) |
void |
setClientInfo(Properties properties) |
void |
setClientInfo(String name,
String value) |
void |
setHoldability(int holdability) |
void |
setNetworkTimeout(Executor executor,
int milliseconds) |
void |
setReadOnly(boolean readOnly) |
Savepoint |
setSavepoint() |
Savepoint |
setSavepoint(String name) |
void |
setSchema(String schema) |
void |
setTransactionIsolation(int level) |
void |
setTypeMap(Map<String,Class<?>> map) |
<T> T |
unwrap(Class<T> iface) |
public YdbConnectionImpl(YdbContext context) throws SQLException
SQLExceptionpublic YdbStatement createStatement() throws SQLException
createStatement in interface ConnectioncreateStatement in interface YdbConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String sql) throws SQLException
YdbConnectionprepareStatement in interface ConnectionprepareStatement in interface YdbConnectionsql - sql to executeSQLException - in case of any internal errorpublic String nativeSQL(String sql)
nativeSQL in interface Connectionpublic void setAutoCommit(boolean autoCommit)
throws SQLException
setAutoCommit in interface ConnectionSQLExceptionpublic boolean getAutoCommit()
throws SQLException
getAutoCommit in interface ConnectionSQLExceptionpublic void commit()
throws SQLException
commit in interface ConnectionSQLExceptionpublic void rollback()
throws SQLException
rollback in interface ConnectionSQLExceptionpublic void close()
throws SQLException
close in interface AutoCloseableclose in interface ConnectionSQLExceptionpublic boolean isClosed()
isClosed in interface Connectionpublic YdbDatabaseMetaData getMetaData()
getMetaData in interface ConnectiongetMetaData in interface YdbConnectionpublic void setReadOnly(boolean readOnly)
throws SQLException
setReadOnly in interface ConnectionSQLExceptionpublic boolean isReadOnly()
throws SQLException
isReadOnly in interface ConnectionSQLExceptionpublic void setCatalog(String catalog)
setCatalog in interface Connectionpublic String getCatalog()
getCatalog in interface Connectionpublic void setTransactionIsolation(int level)
throws SQLException
setTransactionIsolation in interface ConnectionSQLExceptionpublic int getTransactionIsolation()
throws SQLException
getTransactionIsolation in interface ConnectionSQLExceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings in interface ConnectionSQLExceptionpublic void clearWarnings()
throws SQLException
clearWarnings in interface ConnectionSQLExceptionpublic void executeSchemeQuery(String yql, YdbValidator validator) throws SQLException
YdbConnectionexecuteSchemeQuery in interface YdbConnectionyql - query (DDL) to executevalidator - handler for logging and warningsSQLException - if query cannot be executedpublic List<tech.ydb.table.result.ResultSetReader> executeDataQuery(String yql, YdbValidator validator, int timeout, boolean poolable, tech.ydb.table.query.Params params) throws SQLException
YdbConnectionexecuteDataQuery in interface YdbConnectionyql - query to executevalidator - handler for logging and warningstimeout - timeout of operationpoolable - flag to store query in server-side cacheparams - parameters for querySQLException - if query cannot be executedpublic tech.ydb.table.result.ResultSetReader executeScanQuery(String yql, YdbValidator validator, tech.ydb.table.query.Params params) throws SQLException
YdbConnectionexecuteScanQuery in interface YdbConnectionyql - query to executevalidator - handler for logging and warningsparams - parameters for querySQLException - if query cannot be executedpublic ExplainedQuery executeExplainQuery(String yql, YdbValidator validator) throws SQLException
YdbConnectionexecuteExplainQuery in interface YdbConnectionyql - query to explainvalidator - handler for logging and warningsYdbConst.EXPLAIN_COLUMN_AST
and YdbConst.EXPLAIN_COLUMN_PLANSQLException - if query cannot be explainedpublic YdbStatement createStatement(int resultSetType, int resultSetConcurrency) throws SQLException
createStatement in interface ConnectioncreateStatement in interface YdbConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String sql, int resultSetType, int resultSetConcurrency) throws SQLException
prepareStatement in interface ConnectionprepareStatement in interface YdbConnectionSQLExceptionpublic Map<String,Class<?>> getTypeMap()
getTypeMap in interface Connectionpublic void setTypeMap(Map<String,Class<?>> map)
setTypeMap in interface Connectionpublic void setHoldability(int holdability)
throws SQLException
setHoldability in interface ConnectionSQLExceptionpublic int getHoldability()
throws SQLException
getHoldability in interface ConnectionSQLExceptionpublic YdbStatement createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
createStatement in interface ConnectioncreateStatement in interface YdbConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String origSql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
prepareStatement in interface ConnectionprepareStatement in interface YdbConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String sql, YdbPrepareMode mode) throws SQLException
YdbConnectionprepareStatement in interface YdbConnectionsql - sql to preparemode - prepare modeSQLException - in case of any internal errorpublic YdbPreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException
prepareStatement in interface ConnectionprepareStatement in interface YdbConnectionSQLExceptionpublic boolean isValid(int timeout)
throws SQLException
isValid in interface ConnectionSQLExceptionpublic void setClientInfo(String name, String value)
setClientInfo in interface Connectionpublic void setClientInfo(Properties properties)
setClientInfo in interface Connectionpublic String getClientInfo(String name)
getClientInfo in interface Connectionpublic Properties getClientInfo()
getClientInfo in interface Connectionpublic void setSchema(String schema)
setSchema in interface Connectionpublic String getSchema()
getSchema in interface Connectionpublic int getNetworkTimeout()
throws SQLException
getNetworkTimeout in interface ConnectionSQLExceptionpublic String getYdbTxId()
YdbConnectiongetYdbTxId in interface YdbConnectionpublic YdbContext getCtx()
getCtx in interface YdbConnectionpublic CallableStatement prepareCall(String sql) throws SQLException
prepareCall in interface ConnectionSQLExceptionpublic CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency) throws SQLException
prepareCall in interface ConnectionSQLExceptionpublic CallableStatement prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) throws SQLException
prepareCall in interface ConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String sql, int[] columnIndexes) throws SQLException
prepareStatement in interface ConnectionprepareStatement in interface YdbConnectionSQLExceptionpublic YdbPreparedStatement prepareStatement(String sql, String[] columnNames) throws SQLException
prepareStatement in interface ConnectionprepareStatement in interface YdbConnectionSQLExceptionpublic Clob createClob() throws SQLException
createClob in interface ConnectionSQLExceptionpublic Blob createBlob() throws SQLException
createBlob in interface ConnectionSQLExceptionpublic NClob createNClob() throws SQLException
createNClob in interface ConnectionSQLExceptionpublic SQLXML createSQLXML() throws SQLException
createSQLXML in interface ConnectionSQLExceptionpublic Array createArrayOf(String typeName, Object[] elements) throws SQLException
createArrayOf in interface ConnectionSQLExceptionpublic Struct createStruct(String typeName, Object[] attributes) throws SQLException
createStruct in interface ConnectionSQLExceptionpublic Savepoint setSavepoint() throws SQLException
setSavepoint in interface ConnectionSQLExceptionpublic Savepoint setSavepoint(String name) throws SQLException
setSavepoint in interface ConnectionSQLExceptionpublic void rollback(Savepoint savepoint) throws SQLException
rollback in interface ConnectionSQLExceptionpublic void releaseSavepoint(Savepoint savepoint) throws SQLException
releaseSavepoint in interface ConnectionSQLExceptionpublic void abort(Executor executor) throws SQLException
abort in interface ConnectionSQLExceptionpublic void setNetworkTimeout(Executor executor, int milliseconds) throws SQLException
setNetworkTimeout in interface ConnectionSQLExceptionpublic <T> T unwrap(Class<T> iface) throws SQLException
unwrap in interface WrapperSQLExceptionpublic boolean isWrapperFor(Class<?> iface)
isWrapperFor in interface WrapperCopyright © 2024. All rights reserved.