| java.lang.Object com.internetcds.jdbc.tds.TdsInstance com.internetcds.jdbc.tds.Connection_2_0
Method Summary | |
public Array | createArrayOf(String typeName, Object[] elements) | public Blob | createBlob() | public Clob | createClob() | public NClob | createNClob() | public SQLXML | createSQLXML() | public java.sql.Statement | createStatement(int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public Struct | createStruct(String typeName, Object[] attributes) | public Properties | getClientInfo() | public String | getClientInfo(String name) | public int | getHoldability() Retrieves the current holdability of ResultSet objects created
using this Connection object. | public java.util.Map | getTypeMap() JDBC 2.0
Gets the type map object associated with this connection. | public boolean | isValid(int timeout) | public boolean | isWrapperFor(Class> iface) | public CallableStatement | prepareCall(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql, int resultSetType, int resultSetConcurrency, int resultSetHoldability) | public PreparedStatement | prepareStatement(String sql, int autoGeneratedKeys) | public PreparedStatement | prepareStatement(String sql, int[] columnIndexes) | public PreparedStatement | prepareStatement(String sql, String[] columnNames) | public void | releaseSavepoint(Savepoint savepoint) | public void | rollback(Savepoint savepoint) | public void | setClientInfo(Properties properties) | public void | setClientInfo(String name, String value) | public void | setHoldability(int holdability) Changes the holdability of ResultSet objects
created using this Connection object to the given
holdability. | public Savepoint | setSavepoint() | public Savepoint | setSavepoint(String name) | public void | setTypeMap(java.util.Map map) JDBC 2.0
Installs the given type map as the type map for
this connection. | public T | unwrap(Class<T> iface) |
getTypeMap | public java.util.Map getTypeMap() throws SQLException(Code) | | JDBC 2.0
Gets the type map object associated with this connection.
Unless the application has added an entry to the type map,
the map returned will be empty.
the java.util.Map object associated with this Connection object |
setHoldability | public void setHoldability(int holdability) throws SQLException(Code) | | Changes the holdability of ResultSet objects
created using this Connection object to the given
holdability.
Parameters: holdability - a ResultSet holdability constant; one ofResultSet.HOLD_CURSORS_OVER_COMMIT orResultSet.CLOSE_CURSORS_AT_COMMIT throws: SQLException - if a database access occurs, the given parameteris not a ResultSet constant indicating holdability,or the given holdability is not supported since: 1.4 See Also: Connection_2_0.getHoldability See Also: java.sql.ResultSet |
setTypeMap | public void setTypeMap(java.util.Map map) throws SQLException(Code) | | JDBC 2.0
Installs the given type map as the type map for
this connection. The type map will be used for the
custom mapping of SQL structured types and distinct types.
Parameters: the - java.util.Map object to installas the replacement for this Connection object's default type map |
|
|