| Constructor | Description |
|---|---|
PStmtKeyCPDS(java.lang.String sql) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
PStmtKeyCPDS(java.lang.String sql,
int autoGeneratedKeys) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
PStmtKeyCPDS(java.lang.String sql,
int[] columnIndexes) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
PStmtKeyCPDS(java.lang.String sql,
int resultSetType,
int resultSetConcurrency) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
PStmtKeyCPDS(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
PStmtKeyCPDS(java.lang.String sql,
java.lang.String[] columnNames) |
Deprecated.
Constructs a key to uniquely identify a prepared statement.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcreateStatement, equals, getAutoGeneratedKeys, getCatalog, getColumnIndexes, getColumnNames, getResultSetConcurrency, getResultSetHoldability, getResultSetType, getSchema, getSql, getStmtType, hashCode, toStringpublic PStmtKeyCPDS(java.lang.String sql)
sql - The SQL statement.public PStmtKeyCPDS(java.lang.String sql,
int autoGeneratedKeys)
sql - The SQL statement.autoGeneratedKeys - A flag indicating whether auto-generated keys should be returned; one of
Statement.RETURN_GENERATED_KEYS or Statement.NO_GENERATED_KEYS.public PStmtKeyCPDS(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
sql - The SQL statement.resultSetType - A result set type; one of ResultSet.TYPE_FORWARD_ONLY,
ResultSet.TYPE_SCROLL_INSENSITIVE, or ResultSet.TYPE_SCROLL_SENSITIVE.resultSetConcurrency - A concurrency type; one of ResultSet.CONCUR_READ_ONLY or
ResultSet.CONCUR_UPDATABLE.public PStmtKeyCPDS(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
sql - The SQL statement.resultSetType - a result set type; one of ResultSet.TYPE_FORWARD_ONLY,
ResultSet.TYPE_SCROLL_INSENSITIVE, or ResultSet.TYPE_SCROLL_SENSITIVE.resultSetConcurrency - A concurrency type; one of ResultSet.CONCUR_READ_ONLY or
ResultSet.CONCUR_UPDATABLEresultSetHoldability - One of the following ResultSet constants: ResultSet.HOLD_CURSORS_OVER_COMMIT
or ResultSet.CLOSE_CURSORS_AT_COMMIT.public PStmtKeyCPDS(java.lang.String sql,
int[] columnIndexes)
sql - The SQL statement.columnIndexes - An array of column indexes indicating the columns that should be returned from the inserted row or
rows.public PStmtKeyCPDS(java.lang.String sql,
java.lang.String[] columnNames)
sql - The SQL statement.columnNames - An array of column names indicating the columns that should be returned from the inserted row or rows.Copyright © 2000-2018 Apache Software Foundation. All Rights Reserved.