RDMConnection class
Implements the Connection
interface of java.sql
.
References
For more information, reference JDBC documentation for: Connection
Public Methods
- clearWarnings()
- close()
- commit()
- createBlob()
- createClob()
- createNClob()
- createStatement()
- createStatement(int resultSetType, int resultSetConcurrency)
- createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability)
- getAutoCommit()
- getCatalog()
- getClientInfo()
- getClientInfo(String name)
- getHoldability()
- getMetaData()
- getTransactionIsolation()
- getTypeMap()
- getWarnings()
- isClosed()
- isReadOnly()
- isValid(int timeout)
- isWrapperFor(Class <?> iface)
- nativeSQL(String sql)
- prepareCall(String sql)
- prepareCall(String sql, int resultSetType, int resultSetConcurrency)
- prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
- prepareStatement(String sql)
- prepareStatement(String sql, int resultSetType, int resultSetConcurrency)
- prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability)
- releaseSavepoint(Savepoint savepoint)
- rollback()
- rollback(Savepoint savepoint)
- setAutoCommit(boolean autoCommit)
- setCatalog(String catalog)
- setClientInfo(Properties properties)
- setClientInfo(String name, String value)
- setDateFormat(short format)
- setDateSeparator(char datesep)
- setHoldability(int holdability)
- setLockTimeout(int timeout)
- setReadOnly(boolean readOnly)
- setReadOnlyTrmode(boolean mode)
- setSavepoint()
- setSavepoint(String name)
- setTransactionIsolation(int level)
- setTypeMap(Map<String,Class<?>> map)
- unwrap(Class <?> iface)
Unsupported Methods
For all these unsupported methods the JDBC Driver will throw a SQLFeatureNotSupportedException
instead of a SQLFeatureNotSupportedException
.
SQL XML type. The SQL engine in RDM has no XML type, so the JDBC driver does not support it. This includes the following methods which throw a SQLException
.
- Connection.createSQLXML()
SQL Array type. The SQL engine in RDM has no Array type, so the JDBC driver does not support it. This includes the following methods which throw a SQLException
.
- Connection.createArrayOf(String, Object[])
SQL Struct type. The SQL engine in RDM has no Struct type, so the JDBC driver does not support it. This includes the following method which throws a SQLException
.
- Connection.createStruct(String, Object[])
Auto generated keys. The SQL engine does not support the returning of auto generated columns/keys. Attempting to specify that auto generated columns/keys should be returned will throw a SQLException. This affects the following methods
- Connection.prepareStatement(String, int)
- Connection.prepareStatement(String, int[])
- Connection.prepareStatement(String, String[])