Modifier and Type | Method and Description |
---|---|
Connection |
DataspaceStore.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext context) |
Connection |
DataspaceStore.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext context,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
DataspaceStore.getJDBCConnection(java.lang.String username,
java.lang.String password) |
static com.streamscape.ds.persist.BaseStoreProperties |
DataspaceURL.parseURL(java.lang.String url,
boolean hasPrefix,
boolean noPath)
Parses the url into components that are returned in a properties object.
|
static java.util.List |
DataspaceURL.validateUrls(java.lang.String urls) |
Modifier and Type | Method and Description |
---|---|
static SQLException |
Util.connectionClosedException() |
static SQLException |
Util.invalidArgument() |
static SQLException |
Util.invalidArgument(java.lang.String name) |
static SQLException |
Util.nullArgument() |
static SQLException |
Util.outOfRangeArgument() |
static SQLException |
Util.outOfRangeArgument(java.lang.String name) |
static SQLException |
Util.sqlException(DataspaceException e) |
static SQLException |
Util.sqlException(DataspaceException e,
java.lang.Throwable cause) |
static SQLException |
Util.sqlException(int id) |
static SQLException |
Util.sqlException(int id,
int add) |
static SQLException |
Util.sqlException(int id,
java.lang.String message) |
static SQLException |
Util.sqlException(int id,
java.lang.String message,
java.lang.Throwable cause) |
static SQLException |
Util.sqlException(com.streamscape.ds.result.Result r) |
static SQLException |
Util.sqlException(java.lang.String msg,
java.lang.String sqlstate,
int code,
java.lang.Throwable cause) |
static SQLException |
Util.sqlException(java.lang.Throwable t) |
static SQLException |
Util.sqlExceptionSQL(int id) |
Modifier and Type | Method and Description |
---|---|
void |
JDBCConnectionEventListener.connectionErrorOccured(SQLException e) |
Modifier and Type | Method and Description |
---|---|
void |
JDBCConnection.abort(java.util.concurrent.Executor executor)
Terminates an open connection.
|
boolean |
JDBCResultSet.absolute(int row)
Moves the cursor to the given row number in
this
ResultSet object. |
void |
JDBCPreparedStatement.addBatch()
Adds a set of parameters to this
PreparedStatement
object's batch of commands. |
void |
JDBCPreparedStatement.addBatch(java.lang.String sql)
This method should always throw if called for a PreparedStatement or
CallableStatment.
|
void |
JDBCStatement.addBatch(java.lang.String sql)
Adds the given SQL command to the current list of commmands for this
Statement object. |
void |
JDBCResultSet.afterLast()
Moves the cursor to the end of
this
ResultSet object, just after the
last row. |
boolean |
JDBCDatabaseMetaData.allProceduresAreCallable()
Retrieves whether the current user can call all the procedures
returned by the method
getProcedures . |
boolean |
JDBCDatabaseMetaData.allTablesAreSelectable()
Retrieves whether the current user can use all the tables returned
by the method
getTables in a SELECT
statement. |
boolean |
JDBCDatabaseMetaData.autoCommitFailureClosesAllResultSets()
Retrieves whether a
SQLException while autoCommit is true inidcates
that all open ResultSets are closed, even ones that are holdable. |
void |
JDBCResultSet.beforeFirst()
Moves the cursor to the front of
this
ResultSet object, just before the
first row. |
void |
JDBCPreparedStatement.cancel()
Cancels this
Statement object if both the DBMS and
driver support aborting an SQL statement. |
void |
JDBCStatement.cancel()
Cancels this
Statement object if both the DBMS and
driver support aborting an SQL statement. |
void |
JDBCResultSet.cancelRowUpdates()
Cancels the updates made to the current row in this
ResultSet object. |
void |
JDBCPreparedStatement.clearBatch()
Empties this
Statement object's current list of
SQL commands. |
void |
JDBCStatement.clearBatch()
Empties this
Statement object's current list of
SQL commands. |
void |
JDBCPreparedStatement.clearParameters()
Clears the current parameter values immediately.
|
void |
JDBCResultSet.clearWarnings()
Clears all warnings reported on this
ResultSet object. |
void |
JDBCConnection.clearWarnings()
Clears all warnings reported for this
Connection object. |
void |
JDBCPreparedStatement.clearWarnings()
Clears all the warnings reported on this
Statement
object. |
void |
JDBCStatement.clearWarnings()
Clears all the warnings reported on this
Statement
object. |
void |
JDBCResultSet.close()
Releases this
ResultSet object's database and
JDBC resources immediately instead of waiting for
this to happen when it is automatically closed. |
void |
JDBCConnection.close()
Releases this
Connection object's database and JDBC resources
immediately instead of waiting for them to be automatically released. |
void |
JDBCCallableStatement.close()
Does the specialized work required to free this object's resources and
that of it's parent classes.
|
void |
JDBCPreparedStatement.close()
Does the specialized work required to free this object's resources and
that of it's parent class.
|
void |
JDBCStatement.close()
Releases this
Statement object's database
and JDBC resources immediately instead of waiting for
this to happen when it is automatically closed. |
void |
JDBCConnection.commit()
Makes all changes made since the previous
commit/rollback permanent and releases any database locks
currently held by this
Connection object. |
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.lang.String properties) |
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.util.TimeZone timezone) |
Connection |
JDBCDriver.connect(DataspaceAccessor accessor,
java.util.TimeZone timezone,
java.util.Properties properties) |
Connection |
JDBCDriver.connect(java.lang.String url,
java.util.Properties info)
Attempts to make a database connection to the given URL.
|
Array |
JDBCConnection.createArrayOf(java.lang.String typeName,
java.lang.Object[] elements)
Factory method for creating Array objects.
|
Blob |
JDBCConnection.createBlob()
Constructs an object that implements the
Blob interface. |
Clob |
JDBCConnection.createClob()
Constructs an object that implements the
Clob interface. |
NClob |
JDBCConnection.createNClob()
Constructs an object that implements the
NClob interface. |
SQLXML |
JDBCConnection.createSQLXML()
Constructs an object that implements the
SQLXML interface. |
Statement |
JDBCConnection.createStatement()
Creates a
Statement object for sending
SQL statements to the database. |
Statement |
JDBCConnection.createStatement(int resultSetType,
int resultSetConcurrency)
Creates a
Statement object that will generate
ResultSet objects with the given type and concurrency. |
Statement |
JDBCConnection.createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
Statement object that will generate
ResultSet objects with the given type, concurrency,
and holdability. |
Struct |
JDBCConnection.createStruct(java.lang.String typeName,
java.lang.Object[] attributes)
Factory method for creating Struct objects.
|
boolean |
JDBCDatabaseMetaData.dataDefinitionCausesTransactionCommit()
Retrieves whether a data definition statement within a transaction forces
the transaction to commit.
|
boolean |
JDBCDatabaseMetaData.dataDefinitionIgnoredInTransactions()
Retrieves whether this database ignores a data definition statement
within a transaction.
|
void |
JDBCResultSet.deleteRow()
Deletes the current row from this
ResultSet object
and from the underlying database. |
boolean |
JDBCDatabaseMetaData.deletesAreDetected(int type)
Retrieves whether or not a visible row delete can be detected by
calling the method
ResultSet.rowDeleted . |
boolean |
JDBCDatabaseMetaData.doesMaxRowSizeIncludeBlobs()
Retrieves whether the return value for the method
getMaxRowSize includes the SQL data types
LONGVARCHAR and LONGVARBINARY . |
static java.lang.String |
JDBCConnection.escapeSQL(java.lang.String sql) |
boolean |
JDBCPreparedStatement.execute()
Executes the SQL statement in this
PreparedStatement object,
which may be any kind of SQL statement. |
boolean |
JDBCPreparedStatement.execute(java.lang.String sql)
This method should always throw if called for a PreparedStatement or
CallableStatment.
|
boolean |
JDBCStatement.execute(java.lang.String sql)
Executes the given SQL statement, which may return multiple results.
|
boolean |
JDBCPreparedStatement.execute(java.lang.String sql,
int autoGeneratedKeys) |
boolean |
JDBCStatement.execute(java.lang.String sql,
int autoGeneratedKeys)
Executes the given SQL statement, which may return multiple results,
and signals the driver that any
auto-generated keys should be made available
for retrieval.
|
boolean |
JDBCPreparedStatement.execute(java.lang.String sql,
int[] columnIndexes) |
boolean |
JDBCStatement.execute(java.lang.String sql,
int[] columnIndexes)
Executes the given SQL statement, which may return multiple results,
and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
boolean |
JDBCPreparedStatement.execute(java.lang.String sql,
java.lang.String[] columnNames) |
boolean |
JDBCStatement.execute(java.lang.String sql,
java.lang.String[] columnNames)
Executes the given SQL statement, which may return multiple results,
and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int[] |
JDBCPreparedStatement.executeBatch()
Submits a batch of commands to the database for execution and
if all commands execute successfully, returns an array of update counts.
|
int[] |
JDBCStatement.executeBatch()
Submits a batch of commands to the database for execution and
if all commands execute successfully, returns an array of update counts.
|
ResultSet |
JDBCPreparedStatement.executeQuery()
Executes the SQL query in this
PreparedStatement object
and returns the ResultSet object generated by the query. |
ResultSet |
JDBCPreparedStatement.executeQuery(java.lang.String sql)
This method should always throw if called for a PreparedStatement or
CallableStatment.
|
ResultSet |
JDBCStatement.executeQuery(java.lang.String sql)
Executes the given SQL statement, which returns a single
ResultSet object. |
int |
JDBCPreparedStatement.executeUpdate()
Executes the SQL statement in this
PreparedStatement object,
(JDBC4 clarification:)
which must be an SQL Data Manipulation Language (DML) statement, such as INSERT , UPDATE or
DELETE ; or an SQL statement that returns nothing,
such as a DDL statement. |
int |
JDBCPreparedStatement.executeUpdate(java.lang.String sql)
This method should always throw if called for a PreparedStatement or
CallableStatment.
|
int |
JDBCStatement.executeUpdate(java.lang.String sql)
Executes the given SQL statement, which may be an
INSERT ,
UPDATE , or DELETE statement or an
SQL statement that returns nothing, such as an SQL DDL statement. |
int |
JDBCPreparedStatement.executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
Statement methods that must be overridden in this class and throw
an exception.
|
int |
JDBCStatement.executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
Executes the given SQL statement and signals the driver with the
given flag about whether the
auto-generated keys produced by this
Statement object
should be made available for retrieval. |
int |
JDBCPreparedStatement.executeUpdate(java.lang.String sql,
int[] columnIndexes) |
int |
JDBCStatement.executeUpdate(java.lang.String sql,
int[] columnIndexes)
Executes the given SQL statement and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int |
JDBCPreparedStatement.executeUpdate(java.lang.String sql,
java.lang.String[] columnNames) |
int |
JDBCStatement.executeUpdate(java.lang.String sql,
java.lang.String[] columnNames)
Executes the given SQL statement and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int |
JDBCResultSet.findColumn(java.lang.String columnLabel)
Maps the given
ResultSet column label to its
ResultSet column index. |
boolean |
JDBCResultSet.first()
Moves the cursor to the first row in
this
ResultSet object. |
void |
JDBCClob.free()
This method frees the
Clob object and releases the resources the resources
that it holds. |
void |
JDBCArrayBasic.free()
This method frees the
Array object and releases the resources that
it holds. |
void |
JDBCBlob.free()
This method frees the
Blob object and releases the resources that
it holds. |
void |
JDBCClobClient.free()
This method frees the
Clob object and releases the resources the resources
that it holds. |
void |
JDBCBlobFile.free()
This method frees the
Blob object and releases the resources that
it holds. |
void |
JDBCBlobClient.free()
This method frees the
Blob object and releases the resources that
it holds. |
void |
JDBCSQLXML.free()
This method closes this object and releases the resources that it held.
|
void |
JDBCArray.free()
This method frees the
Array object and releases the resources that
it holds. |
void |
JDBCClobFile.free()
This method frees the
Clob object and releases the resources the resources
that it holds. |
boolean |
JDBCDatabaseMetaData.generatedKeyAlwaysReturned()
Retrieves whether a generated key will always be returned if the column
name(s) or index(es) specified for the auto generated key column(s)
are valid and the statement succeeds.
|
java.lang.Object |
JDBCArray.getArray()
Retrieves the contents of the SQL
ARRAY value designated
by this
Array object in the form of an array in the Java
programming language. |
Array |
JDBCResultSet.getArray(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Array object
in the Java programming language. |
Array |
JDBCCallableStatement.getArray(int parameterIndex)
Retrieves the value of the designated JDBC
ARRAY parameter as an
Array object in the Java programming language. |
java.lang.Object |
JDBCArrayBasic.getArray(long index,
int count)
Retrieves a slice of the SQL
ARRAY
value designated by this Array object, beginning with the
specified index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
JDBCArray.getArray(long index,
int count)
Retrieves a slice of the SQL
ARRAY
value designated by this Array object, beginning with the
specified index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
JDBCArrayBasic.getArray(long index,
int count,
java.util.Map map)
Retreives a slice of the SQL
ARRAY value
designated by this Array object, beginning with the specified
index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
JDBCArray.getArray(long index,
int count,
java.util.Map map)
Retieves a slice of the SQL
ARRAY value
designated by this Array object, beginning with the specified
index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
JDBCArrayBasic.getArray(java.util.Map map)
Retrieves the contents of the SQL
ARRAY value designated by this
Array object. |
java.lang.Object |
JDBCArray.getArray(java.util.Map map)
Retrieves the contents of the SQL
ARRAY value designated by this
Array object. |
Array |
JDBCResultSet.getArray(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Array object
in the Java programming language. |
Array |
JDBCCallableStatement.getArray(java.lang.String parameterName)
Retrieves the value of a JDBC
ARRAY parameter as an
Array object in the Java programming language. |
java.io.InputStream |
JDBCClob.getAsciiStream()
Retrieves the
CLOB value designated by this Clob
object as an ASCII stream. |
java.io.InputStream |
JDBCClobClient.getAsciiStream()
Retrieves the
CLOB value designated by this
Clob object as an ascii stream. |
java.io.InputStream |
JDBCClobFile.getAsciiStream()
Retrieves the
CLOB value designated by this Clob
object as an ascii stream. |
java.io.InputStream |
JDBCResultSet.getAsciiStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a stream of ASCII characters. |
java.io.InputStream |
JDBCResultSet.getAsciiStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of
ASCII characters. |
ResultSet |
JDBCDatabaseMetaData.getAttributes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
java.lang.String attributeNamePattern)
Retrieves a description of the given attribute of the given type
for a user-defined type (UDT) that is available in the given schema
and catalog.
|
boolean |
JDBCConnection.getAutoCommit()
Retrieves the current auto-commit mode for this
Connection
object. |
int |
JDBCArrayBasic.getBaseType()
Retrieves the JDBC type of the elements in the array designated
by this
Array object. |
int |
JDBCArray.getBaseType()
Retrieves the JDBC type of the elements in the array designated
by this
Array object. |
java.lang.String |
JDBCArrayBasic.getBaseTypeName()
Retrieves the SQL type name of the elements in
the array designated by this
Array object. |
java.lang.String |
JDBCArray.getBaseTypeName()
Retrieves the SQL type name of the elements in
the array designated by this
Array object. |
ResultSet |
JDBCDatabaseMetaData.getBestRowIdentifier(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
int scope,
boolean nullable)
Retrieves a description of a table's optimal set of columns that
uniquely identifies a row.
|
java.math.BigDecimal |
JDBCResultSet.getBigDecimal(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.math.BigDecimal with full precision. |
java.math.BigDecimal |
JDBCCallableStatement.getBigDecimal(int parameterIndex)
Retrieves the value of the designated JDBC
NUMERIC parameter as a
java.math.BigDecimal object with as many digits to the
right of the decimal point as the value contains. |
java.math.BigDecimal |
JDBCResultSet.getBigDecimal(int columnIndex,
int scale)
Deprecated.
by java.sun.com as of JDK 1.2
|
java.math.BigDecimal |
JDBCCallableStatement.getBigDecimal(int parameterIndex,
int scale)
Deprecated.
use
getBigDecimal(int parameterIndex)
or getBigDecimal(String parameterName) |
java.math.BigDecimal |
JDBCResultSet.getBigDecimal(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.math.BigDecimal with full precision. |
java.math.BigDecimal |
JDBCCallableStatement.getBigDecimal(java.lang.String parameterName)
Retrieves the value of a JDBC
NUMERIC parameter as a
java.math.BigDecimal object with as many digits to the
right of the decimal point as the value contains. |
java.math.BigDecimal |
JDBCResultSet.getBigDecimal(java.lang.String columnLabel,
int scale)
Deprecated.
by java.sun.com as of JDK 1.2
|
java.io.InputStream |
JDBCBlob.getBinaryStream()
Retrieves the
BLOB value designated by this
Blob instance as a stream. |
java.io.InputStream |
JDBCBlobFile.getBinaryStream()
Retrieves the
BLOB value designated by this
Blob instance as a stream. |
java.io.InputStream |
JDBCBlobClient.getBinaryStream()
Retrieves the
BLOB value designated by this
Blob instance as a stream. |
java.io.InputStream |
JDBCSQLXML.getBinaryStream()
Retrieves the XML value designated by this SQLXML instance as a stream.
|
java.io.InputStream |
JDBCResultSet.getBinaryStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of
uninterpreted bytes. |
java.io.InputStream |
JDBCBlob.getBinaryStream(long pos,
long length)
Returns an
InputStream object that contains a partial Blob value,
starting with the byte specified by pos, which is length bytes in length. |
java.io.InputStream |
JDBCBlobFile.getBinaryStream(long pos,
long length)
Returns an
InputStream object that contains a partial Blob value,
starting with the byte specified by pos, which is length bytes in length. |
java.io.InputStream |
JDBCBlobClient.getBinaryStream(long pos,
long length)
Returns an
InputStream object that contains a partial Blob value,
starting with the byte specified by pos, which is length bytes in length. |
java.io.InputStream |
JDBCResultSet.getBinaryStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of uninterpreted
byte s. |
Blob |
JDBCResultSet.getBlob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Blob object
in the Java programming language. |
Blob |
JDBCCallableStatement.getBlob(int parameterIndex)
Retrieves the value of the designated JDBC
BLOB parameter as a
Blob object in the Java programming language. |
Blob |
JDBCResultSet.getBlob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Blob object
in the Java programming language. |
Blob |
JDBCCallableStatement.getBlob(java.lang.String parameterName)
Retrieves the value of a JDBC
BLOB parameter as a
Blob object in the Java programming language. |
boolean |
JDBCResultSet.getBoolean(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a boolean in the Java programming language. |
boolean |
JDBCCallableStatement.getBoolean(int parameterIndex)
(JDBC4 modified:)
Retrieves the value of the designated JDBC
BIT
or BOOLEAN parameter as a
boolean in the Java programming language. |
boolean |
JDBCResultSet.getBoolean(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a boolean in the Java programming language. |
boolean |
JDBCCallableStatement.getBoolean(java.lang.String parameterName)
(JDBC4 modified:)
|
byte |
JDBCResultSet.getByte(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte in the Java programming language. |
byte |
JDBCCallableStatement.getByte(int parameterIndex)
Retrieves the value of the designated JDBC
TINYINT parameter
as a byte in the Java programming language. |
byte |
JDBCResultSet.getByte(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte in the Java programming language. |
byte |
JDBCCallableStatement.getByte(java.lang.String parameterName)
Retrieves the value of a JDBC
TINYINT parameter as a byte
in the Java programming language. |
byte[] |
JDBCResultSet.getBytes(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte array in the Java programming language. |
byte[] |
JDBCCallableStatement.getBytes(int parameterIndex)
Retrieves the value of the designated JDBC
BINARY or
VARBINARY parameter as an array of byte
values in the Java programming language. |
byte[] |
JDBCBlob.getBytes(long pos,
int length)
Retrieves all or part of the
BLOB
value that this Blob object represents, as an array of
bytes. |
byte[] |
JDBCBlobFile.getBytes(long pos,
int length)
Retrieves all or part of the
BLOB
value that this Blob object represents, as an array of
bytes. |
byte[] |
JDBCBlobClient.getBytes(long pos,
int length)
Retrieves all or part of the
BLOB value that this
Blob object represents, as an array of bytes. |
byte[] |
JDBCResultSet.getBytes(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte array in the Java programming language. |
byte[] |
JDBCCallableStatement.getBytes(java.lang.String parameterName)
Retrieves the value of a JDBC
BINARY or VARBINARY
parameter as an array of byte values in the Java
programming language. |
java.lang.String |
JDBCConnection.getCatalog()
Retrieves this
Connection object's current catalog name. |
java.lang.String |
JDBCResultSetMetaData.getCatalogName(int column)
Gets the designated column's table's catalog name.
|
ResultSet |
JDBCDatabaseMetaData.getCatalogs()
Retrieves the catalog names available in this database.
|
java.lang.String |
JDBCDatabaseMetaData.getCatalogSeparator()
Retrieves the
String that this database uses as the
separator between a catalog and table name. |
java.lang.String |
JDBCDatabaseMetaData.getCatalogTerm()
Retrieves the database vendor's preferred term for "catalog".
|
java.io.Reader |
JDBCClob.getCharacterStream()
Retrieves the
CLOB value designated by this Clob
object as a java.io.Reader object (or as a stream of
characters). |
java.io.Reader |
JDBCClobClient.getCharacterStream()
Retrieves the
CLOB value designated by this
Clob object as a java.io.Reader object (or
as a stream of characters). |
java.io.Reader |
JDBCSQLXML.getCharacterStream()
Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object.
|
java.io.Reader |
JDBCClobFile.getCharacterStream()
Retrieves the
CLOB value designated by this Clob
object as a java.io.Reader object (or as a stream of
characters). |
java.io.Reader |
JDBCResultSet.getCharacterStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
JDBCCallableStatement.getCharacterStream(int parameterIndex)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.io.Reader |
JDBCClob.getCharacterStream(long pos,
long length)
Returns a
Reader object that contains a partial Clob value, starting
with the character specified by pos, which is length characters in length. |
java.io.Reader |
JDBCClobClient.getCharacterStream(long pos,
long length)
Returns a
Reader object that contains a partial Clob value, starting
with the character specified by pos, which is length characters in length. |
java.io.Reader |
JDBCClobFile.getCharacterStream(long pos,
long length)
Returns a
Reader object that contains a partial Clob value, starting
with the character specified by pos, which is length characters in length. |
java.io.Reader |
JDBCResultSet.getCharacterStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
JDBCCallableStatement.getCharacterStream(java.lang.String parameterName)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.util.Properties |
JDBCConnection.getClientInfo()
Returns a list containing the name and current value of each client info
property supported by the driver.
|
java.lang.String |
JDBCConnection.getClientInfo(java.lang.String name)
Returns the value of the client info property specified by name.
|
ResultSet |
JDBCDatabaseMetaData.getClientInfoProperties()
Retrieves a list of the client info properties
that the driver supports.
|
Clob |
JDBCResultSet.getClob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Clob object
in the Java programming language. |
Clob |
JDBCCallableStatement.getClob(int parameterIndex)
Retrieves the value of the designated JDBC
CLOB parameter as a
java.sql.Clob object in the Java programming language. |
Clob |
JDBCResultSet.getClob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Clob object
in the Java programming language. |
Clob |
JDBCCallableStatement.getClob(java.lang.String parameterName)
Retrieves the value of a JDBC
CLOB parameter as a
Clob object in the Java programming language. |
java.lang.String |
JDBCResultSetMetaData.getColumnClassName(int column) |
int |
JDBCResultSetMetaData.getColumnCount()
Returns the number of columns in this
ResultSet object. |
int |
JDBCResultSetMetaData.getColumnDisplaySize(int column)
Indicates the designated column's normal maximum width in characters.
|
java.lang.String |
JDBCResultSetMetaData.getColumnLabel(int column)
Gets the designated column's suggested title for use in printouts and
displays.
|
java.lang.String |
JDBCResultSetMetaData.getColumnName(int column)
Get the designated column's name.
|
ResultSet |
JDBCDatabaseMetaData.getColumnPrivileges(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
java.lang.String columnNamePattern)
Retrieves a description of the access rights for a table's columns.
|
ResultSet |
JDBCDatabaseMetaData.getColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of table columns available in
the specified catalog.
|
int |
JDBCResultSetMetaData.getColumnType(int column)
Retrieves the designated column's SQL type.
|
java.lang.String |
JDBCResultSetMetaData.getColumnTypeName(int column)
Retrieves the designated column's database-specific type name.
|
int |
JDBCResultSet.getConcurrency()
Retrieves the concurrency mode of this
ResultSet object. |
Connection |
JDBCDataSource.getConnection()
Retrieves a new connection using the properties that have already been
set.
|
Connection |
JDBCDatabaseMetaData.getConnection()
Retrieves the connection that produced this metadata object.
|
Connection |
JDBCPreparedStatement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
Connection |
JDBCStatement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
static Connection |
JDBCDriver.getConnection(java.lang.String url,
java.util.Properties info)
The static equivalent of the
connect(String,Properties)
method. |
Connection |
JDBCDataSource.getConnection(java.lang.String username,
java.lang.String password)
Retrieves a new connection using the given username and password,
and the database url that has been set.
|
ResultSet |
JDBCDatabaseMetaData.getCrossReference(java.lang.String parentCatalog,
java.lang.String parentSchema,
java.lang.String parentTable,
java.lang.String foreignCatalog,
java.lang.String foreignSchema,
java.lang.String foreignTable)
(JDBC4 clarification:)
Retrieves a description of the foreign key columns in the given foreign key
table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table).
|
java.lang.String |
JDBCResultSet.getCursorName()
Retrieves the name of the SQL cursor used by this
ResultSet
object. |
int |
JDBCDatabaseMetaData.getDatabaseMajorVersion()
Retrieves the major version number of the underlying database.
|
int |
JDBCDatabaseMetaData.getDatabaseMinorVersion()
Retrieves the minor version number of the underlying database.
|
java.lang.String |
JDBCDatabaseMetaData.getDatabaseProductName()
Retrieves the name of this database product.
|
java.lang.String |
JDBCDatabaseMetaData.getDatabaseProductVersion()
Retrieves the version number of this database product.
|
Date |
JDBCResultSet.getDate(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
JDBCCallableStatement.getDate(int parameterIndex)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object. |
Date |
JDBCResultSet.getDate(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
JDBCCallableStatement.getDate(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Date |
JDBCResultSet.getDate(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
JDBCCallableStatement.getDate(java.lang.String parameterName)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object. |
Date |
JDBCResultSet.getDate(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
JDBCCallableStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
int |
JDBCDatabaseMetaData.getDefaultTransactionIsolation()
Retrieves this database's default transaction isolation level.
|
double |
JDBCResultSet.getDouble(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a double in the Java programming language. |
double |
JDBCCallableStatement.getDouble(int parameterIndex)
Retrieves the value of the designated JDBC
DOUBLE parameter as a double
in the Java programming language. |
double |
JDBCResultSet.getDouble(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a double in the Java programming language. |
double |
JDBCCallableStatement.getDouble(java.lang.String parameterName)
Retrieves the value of a JDBC
DOUBLE parameter as a double
in the Java programming language. |
java.lang.String |
JDBCDatabaseMetaData.getDriverName()
Retrieves the name of this JDBC driver.
|
java.lang.String |
JDBCDatabaseMetaData.getDriverVersion()
Retrieves the version number of this JDBC driver as a
String . |
ResultSet |
JDBCDatabaseMetaData.getExportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the foreign key columns that reference the
given table's primary key columns (the foreign keys exported by a
table).
|
java.lang.String |
JDBCDatabaseMetaData.getExtraNameCharacters()
Retrieves all the "extra" characters that can be used in unquoted
identifier names (those beyond a-z, A-Z, 0-9 and _).
|
int |
JDBCResultSet.getFetchDirection()
Retrieves the fetch direction for this
ResultSet object. |
int |
JDBCPreparedStatement.getFetchDirection()
Retrieves the direction for fetching rows from
database tables that is the default for result sets
generated from this
Statement object. |
int |
JDBCStatement.getFetchDirection()
Retrieves the direction for fetching rows from
database tables that is the default for result sets
generated from this
Statement object. |
int |
JDBCResultSet.getFetchSize()
Retrieves the fetch size for this
ResultSet object. |
int |
JDBCPreparedStatement.getFetchSize()
Retrieves the number of result set rows that is the default
fetch size for
ResultSet objects
generated from this Statement object. |
int |
JDBCStatement.getFetchSize()
Retrieves the number of result set rows that is the default
fetch size for
ResultSet objects
generated from this Statement object. |
float |
JDBCResultSet.getFloat(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a float in the Java programming language. |
float |
JDBCCallableStatement.getFloat(int parameterIndex)
Retrieves the value of the designated JDBC
FLOAT parameter
as a float in the Java programming language. |
float |
JDBCResultSet.getFloat(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a float in the Java programming language. |
float |
JDBCCallableStatement.getFloat(java.lang.String parameterName)
Retrieves the value of a JDBC
FLOAT parameter as a float
in the Java programming language. |
ResultSet |
JDBCDatabaseMetaData.getFunctionColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's system or user
function parameters and return type.
|
ResultSet |
JDBCDatabaseMetaData.getFunctions(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern)
Retrieves a description of the user functions available in the given
catalog.
|
ResultSet |
JDBCPreparedStatement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
ResultSet |
JDBCStatement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
int |
JDBCResultSet.getHoldability()
Retrieves the holdability of this
ResultSet object |
int |
JDBCConnection.getHoldability()
Retrieves the current holdability of
ResultSet objects
created using this Connection object. |
java.lang.String |
JDBCDatabaseMetaData.getIdentifierQuoteString()
Retrieves the string used to quote SQL identifiers.
|
ResultSet |
JDBCDatabaseMetaData.getImportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the primary key columns that are
referenced by the given table's foreign key columns (the primary keys
imported by a table).
|
ResultSet |
JDBCDatabaseMetaData.getIndexInfo(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
boolean unique,
boolean approximate)
Retrieves a description of the given table's indices and statistics.
|
int |
JDBCResultSet.getInt(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
an int in the Java programming language. |
int |
JDBCCallableStatement.getInt(int parameterIndex)
Retrieves the value of the designated JDBC
INTEGER parameter
as an int in the Java programming language. |
int |
JDBCResultSet.getInt(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
an int in the Java programming language. |
int |
JDBCCallableStatement.getInt(java.lang.String parameterName)
Retrieves the value of a JDBC
INTEGER parameter as an int
in the Java programming language. |
int |
JDBCDatabaseMetaData.getJDBCMajorVersion()
Retrieves the major JDBC version number for this
driver.
|
int |
JDBCDatabaseMetaData.getJDBCMinorVersion()
Retrieves the minor JDBC version number for this
driver.
|
int |
JDBCCommonDataSource.getLoginTimeout()
Gets the maximum time in seconds that this data source can wait
while attempting to connect to a database.
|
java.io.PrintWriter |
JDBCCommonDataSource.getLogWriter()
Retrieves the log writer for this
DataSource
object. |
long |
JDBCResultSet.getLong(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a long in the Java programming language. |
long |
JDBCCallableStatement.getLong(int parameterIndex)
Retrieves the value of the designated JDBC
BIGINT parameter
as a long in the Java programming language. |
long |
JDBCResultSet.getLong(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a long in the Java programming language. |
long |
JDBCCallableStatement.getLong(java.lang.String parameterName)
Retrieves the value of a JDBC
BIGINT parameter as a long
in the Java programming language. |
int |
JDBCDatabaseMetaData.getMaxBinaryLiteralLength()
Retrieves the maximum number of hex characters this database allows in an
inline binary literal.
|
int |
JDBCDatabaseMetaData.getMaxCatalogNameLength()
Retrieves the maximum number of characters that this database allows in a
catalog name.
|
int |
JDBCDatabaseMetaData.getMaxCharLiteralLength()
Retrieves the maximum number of characters this database allows
for a character literal.
|
int |
JDBCDatabaseMetaData.getMaxColumnNameLength()
Retrieves the maximum number of characters this database allows
for a column name.
|
int |
JDBCDatabaseMetaData.getMaxColumnsInGroupBy()
Retrieves the maximum number of columns this database allows in a
GROUP BY clause. |
int |
JDBCDatabaseMetaData.getMaxColumnsInIndex()
Retrieves the maximum number of columns this database allows in an index.
|
int |
JDBCDatabaseMetaData.getMaxColumnsInOrderBy()
Retrieves the maximum number of columns this database allows in an
ORDER BY clause. |
int |
JDBCDatabaseMetaData.getMaxColumnsInSelect()
Retrieves the maximum number of columns this database allows in a
SELECT list. |
int |
JDBCDatabaseMetaData.getMaxColumnsInTable()
Retrieves the maximum number of columns this database allows in a table.
|
int |
JDBCDatabaseMetaData.getMaxConnections()
Retrieves the maximum number of concurrent connections to this
database that are possible.
|
int |
JDBCDatabaseMetaData.getMaxCursorNameLength()
Retrieves the maximum number of characters that this database allows in a
cursor name.
|
int |
JDBCPreparedStatement.getMaxFieldSize()
Retrieves the maximum number of bytes that can be
returned for character and binary column values in a
ResultSet
object produced by this Statement object. |
int |
JDBCStatement.getMaxFieldSize()
Retrieves the maximum number of bytes that can be
returned for character and binary column values in a
ResultSet
object produced by this Statement object. |
int |
JDBCDatabaseMetaData.getMaxIndexLength()
Retrieves the maximum number of bytes this database allows for an
index, including all of the parts of the index.
|
int |
JDBCDatabaseMetaData.getMaxProcedureNameLength()
Retrieves the maximum number of characters that this database allows in a
procedure name.
|
int |
JDBCPreparedStatement.getMaxRows()
Retrieves the maximum number of rows that a
ResultSet object produced by this
Statement object can contain. |
int |
JDBCStatement.getMaxRows()
Retrieves the maximum number of rows that a
ResultSet object produced by this
Statement object can contain. |
int |
JDBCDatabaseMetaData.getMaxRowSize()
Retrieves the maximum number of bytes this database allows in
a single row.
|
int |
JDBCDatabaseMetaData.getMaxSchemaNameLength()
Retrieves the maximum number of characters that this database allows in a
schema name.
|
int |
JDBCDatabaseMetaData.getMaxStatementLength()
Retrieves the maximum number of characters this database allows in
an SQL statement.
|
int |
JDBCDatabaseMetaData.getMaxStatements()
Retrieves the maximum number of active statements to this database
that can be open at the same time.
|
int |
JDBCDatabaseMetaData.getMaxTableNameLength()
Retrieves the maximum number of characters this database allows in
a table name.
|
int |
JDBCDatabaseMetaData.getMaxTablesInSelect()
Retrieves the maximum number of tables this database allows in a
SELECT statement. |
int |
JDBCDatabaseMetaData.getMaxUserNameLength()
Retrieves the maximum number of characters this database allows in
a user name.
|
ResultSetMetaData |
JDBCResultSet.getMetaData()
Retrieves the number, types and properties of
this
ResultSet object's columns. |
DatabaseMetaData |
JDBCConnection.getMetaData()
Retrieves a
DatabaseMetaData object that contains
metadata about the database to which this
Connection object represents a connection. |
ResultSetMetaData |
JDBCPreparedStatement.getMetaData()
Retrieves a
ResultSetMetaData object that contains
information about the columns of the ResultSet object
that will be returned when this PreparedStatement object
is executed. |
boolean |
JDBCPreparedStatement.getMoreResults()
Moves to this
Statement object's next result, returns
true if it is a ResultSet object, and
implicitly closes any current ResultSet
object(s) obtained with the method getResultSet . |
boolean |
JDBCStatement.getMoreResults()
Moves to this
Statement object's next result, returns
true if it is a ResultSet object, and
implicitly closes any current ResultSet
object(s) obtained with the method getResultSet . |
boolean |
JDBCPreparedStatement.getMoreResults(int current)
Moves to this
Statement object's next result, deals with
any current ResultSet object(s) according to the instructions
specified by the given flag, and returns
true if the next result is a ResultSet object. |
boolean |
JDBCStatement.getMoreResults(int current)
Moves to this
Statement object's next result, deals with
any current ResultSet object(s) according to the instructions
specified by the given flag, and returns
true if the next result is a ResultSet object. |
java.io.Reader |
JDBCResultSet.getNCharacterStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
JDBCCallableStatement.getNCharacterStream(int parameterIndex)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.io.Reader |
JDBCResultSet.getNCharacterStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
JDBCCallableStatement.getNCharacterStream(java.lang.String parameterName)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
NClob |
JDBCResultSet.getNClob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a NClob object
in the Java programming language. |
NClob |
JDBCCallableStatement.getNClob(int parameterIndex)
Retrieves the value of the designated JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language. |
NClob |
JDBCResultSet.getNClob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a NClob object
in the Java programming language. |
NClob |
JDBCCallableStatement.getNClob(java.lang.String parameterName)
Retrieves the value of a JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language. |
int |
JDBCConnection.getNetworkTimeout()
Retrieves the number of milliseconds the driver will
wait for a database request to complete.
|
java.lang.String |
JDBCResultSet.getNString(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
JDBCCallableStatement.getNString(int parameterIndex)
Retrieves the value of the designated
NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language. |
java.lang.String |
JDBCResultSet.getNString(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
JDBCCallableStatement.getNString(java.lang.String parameterName)
Retrieves the value of the designated
NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language. |
java.lang.String |
JDBCDatabaseMetaData.getNumericFunctions()
Retrieves a comma-separated list of math functions available with
this database.
|
java.lang.Object |
JDBCResultSet.getObject(int columnIndex) |
java.lang.Object |
JDBCCallableStatement.getObject(int parameterIndex)
Retrieves the value of the designated parameter as an
Object
in the Java programming language. |
java.lang.Object |
JDBCResultSet.getObject(int columnIndex,
java.lang.Class type)
Retrieves the value of the designated column in the current row
of this
ResultSet object and will convert from the
SQL type of the column to the requested Java data type, if the
conversion is supported. |
java.lang.Object |
JDBCCallableStatement.getObject(int parameterIndex,
java.lang.Class type)
Returns an object representing the value of OUT parameter
parameterIndex and will convert from the
SQL type of the parameter to the requested Java data type, if the
conversion is supported. |
java.lang.Object |
JDBCResultSet.getObject(int columnIndex,
java.util.Map map)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Object
in the Java programming language. |
java.lang.Object |
JDBCCallableStatement.getObject(int parameterIndex,
java.util.Map map)
Returns an object representing the value of OUT parameter
parameterIndex and uses map for the custom
mapping of the parameter value. |
java.lang.Object |
JDBCResultSet.getObject(java.lang.String columnLabel) |
java.lang.Object |
JDBCCallableStatement.getObject(java.lang.String parameterName)
Retrieves the value of a parameter as an
Object in the Java
programming language. |
java.lang.Object |
JDBCResultSet.getObject(java.lang.String columnLabel,
java.lang.Class type)
Retrieves the value of the designated column in the current row
of this
ResultSet object and will convert from the
SQL type of the column to the requested Java data type, if the
conversion is supported. |
java.lang.Object |
JDBCCallableStatement.getObject(java.lang.String parameterName,
java.lang.Class type)
Returns an object representing the value of OUT parameter
parameterName and will convert from the
SQL type of the parameter to the requested Java data type, if the
conversion is supported. |
java.lang.Object |
JDBCResultSet.getObject(java.lang.String columnLabel,
java.util.Map map)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Object
in the Java programming language. |
java.lang.Object |
JDBCCallableStatement.getObject(java.lang.String parameterName,
java.util.Map map) |
java.lang.String |
JDBCParameterMetaData.getParameterClassName(int param)
Retrieves the fully-qualified name of the Java class whose instances
should be passed to the method
PreparedStatement.setObject . |
int |
JDBCParameterMetaData.getParameterCount()
Retrieves the number of parameters in the
PreparedStatement
object for which this ParameterMetaData object contains
information. |
ParameterMetaData |
JDBCPreparedStatement.getParameterMetaData()
Retrieves the number, types and properties of this
PreparedStatement object's parameters. |
int |
JDBCParameterMetaData.getParameterMode(int param)
Retrieves the designated parameter's mode.
|
int |
JDBCParameterMetaData.getParameterType(int param)
Retrieves the designated parameter's SQL type.
|
java.lang.String |
JDBCParameterMetaData.getParameterTypeName(int param)
Retrieves the designated parameter's database-specific type name.
|
int |
JDBCResultSetMetaData.getPrecision(int column)
(JDBC4 clarification:)
Get the designated column's specified column size.
|
int |
JDBCParameterMetaData.getPrecision(int param)
Retrieves the designated parameter's specified column size.
|
ResultSet |
JDBCDatabaseMetaData.getPrimaryKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the given table's primary key columns.
|
ResultSet |
JDBCDatabaseMetaData.getProcedureColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's stored procedure parameter
and result columns.
|
ResultSet |
JDBCDatabaseMetaData.getProcedures(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern)
Retrieves a description of the stored procedures available in the given
catalog.
|
java.lang.String |
JDBCDatabaseMetaData.getProcedureTerm()
Retrieves the database vendor's preferred term for "procedure".
|
ResultSet |
JDBCDatabaseMetaData.getPseudoColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the pseudo or hidden columns available
in a given table within the specified catalog and schema.
|
int |
JDBCPreparedStatement.getQueryTimeout()
Retrieves the number of seconds the driver will
wait for a
Statement object to execute. |
int |
JDBCStatement.getQueryTimeout()
Retrieves the number of seconds the driver will
wait for a
Statement object to execute. |
Ref |
JDBCResultSet.getRef(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Ref object
in the Java programming language. |
Ref |
JDBCCallableStatement.getRef(int parameterIndex)
Retrieves the value of the designated JDBC
REF(<structured-type>)
parameter as a Ref object in the Java programming language. |
Ref |
JDBCResultSet.getRef(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Ref object
in the Java programming language. |
Ref |
JDBCCallableStatement.getRef(java.lang.String parameterName)
Retrieves the value of a JDBC
REF(<structured-type>)
parameter as a Ref object in the Java programming language. |
ResultSet |
JDBCArrayBasic.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
JDBCPreparedStatement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
JDBCStatement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
JDBCArray.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
JDBCArrayBasic.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArray.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArrayBasic.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArray.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the sub-array that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArrayBasic.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
ResultSet |
JDBCArray.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
int |
JDBCPreparedStatement.getResultSetConcurrency()
Retrieves the result set concurrency for
ResultSet objects
generated by this Statement object. |
int |
JDBCStatement.getResultSetConcurrency()
Retrieves the result set concurrency for
ResultSet objects
generated by this Statement object. |
int |
JDBCDatabaseMetaData.getResultSetHoldability()
(JDBC4 clarification:)
Retrieves this database's default holdability for
ResultSet
objects. |
int |
JDBCPreparedStatement.getResultSetHoldability()
Retrieves the result set holdability for
ResultSet objects
generated by this Statement object. |
int |
JDBCStatement.getResultSetHoldability()
Retrieves the result set holdability for
ResultSet objects
generated by this Statement object. |
int |
JDBCPreparedStatement.getResultSetType()
Retrieves the result set type for
ResultSet objects
generated by this Statement object. |
int |
JDBCStatement.getResultSetType()
Retrieves the result set type for
ResultSet objects
generated by this Statement object. |
int |
JDBCResultSet.getRow()
Retrieves the current row number.
|
RowId |
JDBCResultSet.getRowId(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java
programming language. |
RowId |
JDBCCallableStatement.getRowId(int parameterIndex)
Retrieves the value of the designated JDBC
ROWID parameter as a
java.sql.RowId object. |
RowId |
JDBCResultSet.getRowId(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java
programming language. |
RowId |
JDBCCallableStatement.getRowId(java.lang.String parameterName)
Retrieves the value of the designated JDBC
ROWID parameter as a
java.sql.RowId object. |
RowIdLifetime |
JDBCDatabaseMetaData.getRowIdLifetime()
Indicates whether or not this data source supports the SQL
ROWID type,
and if so the lifetime for which a RowId object remains valid. |
int |
JDBCSavepoint.getSavepointId()
Retrieves the generated ID for the savepoint that this
Savepoint object represents. |
java.lang.String |
JDBCSavepoint.getSavepointName()
Retrieves the name of the savepoint that this
Savepoint
object represents. |
int |
JDBCResultSetMetaData.getScale(int column)
Gets the designated column's number of digits to right of the decimal point.
|
int |
JDBCParameterMetaData.getScale(int param)
Retrieves the designated parameter's number of digits to right of the decimal point.
|
java.lang.String |
JDBCConnection.getSchema()
Retrieves this
Connection object's current schema name. |
java.lang.String |
JDBCResultSetMetaData.getSchemaName(int column)
Get the designated column's table's schema.
|
ResultSet |
JDBCDatabaseMetaData.getSchemas()
Retrieves the schema names available in this database.
|
ResultSet |
JDBCDatabaseMetaData.getSchemas(java.lang.String catalog,
java.lang.String schemaPattern)
Retrieves the schema names available in this database.
|
java.lang.String |
JDBCDatabaseMetaData.getSchemaTerm()
Retrieves the database vendor's preferred term for "schema".
|
java.lang.String |
JDBCDatabaseMetaData.getSearchStringEscape()
Retrieves the string that can be used to escape wildcard characters.
|
short |
JDBCResultSet.getShort(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a short in the Java programming language. |
short |
JDBCCallableStatement.getShort(int parameterIndex)
Retrieves the value of the designated JDBC
SMALLINT parameter
as a short in the Java programming language. |
short |
JDBCResultSet.getShort(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a short in the Java programming language. |
short |
JDBCCallableStatement.getShort(java.lang.String parameterName)
Retrieves the value of a JDBC
SMALLINT parameter as a short
in the Java programming language. |
javax.xml.transform.Source |
JDBCSQLXML.getSource(java.lang.Class sourceClass)
Returns a Source for reading the XML value designated by this SQLXML instance.
|
java.lang.String |
JDBCDatabaseMetaData.getSQLKeywords()
Retrieves a comma-separated list of all of this database's SQL keywords
that are NOT also SQL:2003 keywords.
|
int |
JDBCDatabaseMetaData.getSQLStateType()
(JDBC4 modified:)
Indicates whether the SQLSTATE returned by
SQLException.getSQLState
is X/Open (now known as Open Group) SQL CLI or SQL:2003. |
SQLXML |
JDBCResultSet.getSQLXML(int columnIndex)
Retrieves the value of the designated column in the current row of
this
ResultSet as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
JDBCCallableStatement.getSQLXML(int parameterIndex)
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
JDBCResultSet.getSQLXML(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row of
this
ResultSet as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
JDBCCallableStatement.getSQLXML(java.lang.String parameterName)
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language. |
Statement |
JDBCResultSet.getStatement()
Retrieves the
Statement object that produced this
ResultSet object. |
java.lang.String |
JDBCSQLXML.getString()
Returns a string representation of the XML value designated by this SQLXML instance.
|
java.lang.String |
JDBCResultSet.getString(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
JDBCCallableStatement.getString(int parameterIndex)
Retrieves the value of the designated JDBC
CHAR ,
VARCHAR , or LONGVARCHAR parameter as a
String in the Java programming language. |
java.lang.String |
JDBCResultSet.getString(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
JDBCCallableStatement.getString(java.lang.String parameterName)
Retrieves the value of a JDBC
CHAR , VARCHAR ,
or LONGVARCHAR parameter as a String in
the Java programming language. |
java.lang.String |
JDBCDatabaseMetaData.getStringFunctions()
Retrieves a comma-separated list of string functions available with
this database.
|
java.lang.String |
JDBCClob.getSubString(long pos,
int length)
Retrieves a copy of the specified substring
in the
CLOB value
designated by this Clob object. |
java.lang.String |
JDBCClobClient.getSubString(long pos,
int length)
Retrieves a copy of the specified substring in the
CLOB
value designated by this Clob object. |
java.lang.String |
JDBCClobFile.getSubString(long pos,
int length)
Retrieves a copy of the specified substring
in the
CLOB value
designated by this Clob object. |
ResultSet |
JDBCDatabaseMetaData.getSuperTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the table hierarchies defined in a particular
schema in this database.
|
ResultSet |
JDBCDatabaseMetaData.getSuperTypes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern)
Retrieves a description of the user-defined type (UDT) hierarchies defined in a
particular schema in this database.
|
java.lang.String |
JDBCDatabaseMetaData.getSystemFunctions()
Retrieves a comma-separated list of system functions available with
this database.
|
java.lang.String |
JDBCResultSetMetaData.getTableName(int column)
Gets the designated column's table name.
|
ResultSet |
JDBCDatabaseMetaData.getTablePrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the access rights for each table available
in a catalog.
|
ResultSet |
JDBCDatabaseMetaData.getTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String[] types)
Retrieves a description of the tables available in the given catalog.
|
ResultSet |
JDBCDatabaseMetaData.getTableTypes()
Retrieves the table types available in this database.
|
Time |
JDBCResultSet.getTime(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Time object in the Java programming language. |
Time |
JDBCCallableStatement.getTime(int parameterIndex)
Retrieves the value of the designated JDBC
TIME parameter as a
java.sql.Time object. |
Time |
JDBCResultSet.getTime(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Time
object in the Java programming language. |
Time |
JDBCCallableStatement.getTime(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
TIME parameter as a
java.sql.Time object, using
the given Calendar object
to construct the time. |
Time |
JDBCResultSet.getTime(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Time object in the Java programming language. |
Time |
JDBCCallableStatement.getTime(java.lang.String parameterName)
Retrieves the value of a JDBC
TIME parameter as a
java.sql.Time object. |
Time |
JDBCResultSet.getTime(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Time object
in the Java programming language. |
Time |
JDBCCallableStatement.getTime(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
TIME parameter as a
java.sql.Time object, using
the given Calendar object
to construct the time. |
java.lang.String |
JDBCDatabaseMetaData.getTimeDateFunctions()
Retrieves a comma-separated list of the time and date functions available
with this database.
|
Timestamp |
JDBCResultSet.getTimestamp(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Timestamp object in the Java programming language. |
Timestamp |
JDBCCallableStatement.getTimestamp(int parameterIndex)
Retrieves the value of the designated JDBC
TIMESTAMP
parameter as a java.sql.Timestamp object. |
Timestamp |
JDBCResultSet.getTimestamp(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Timestamp object
in the Java programming language. |
Timestamp |
JDBCCallableStatement.getTimestamp(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object, using
the given Calendar object to construct
the Timestamp object. |
Timestamp |
JDBCResultSet.getTimestamp(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Timestamp object in the Java programming language. |
Timestamp |
JDBCCallableStatement.getTimestamp(java.lang.String parameterName)
Retrieves the value of a JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object. |
Timestamp |
JDBCResultSet.getTimestamp(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Timestamp object
in the Java programming language. |
Timestamp |
JDBCCallableStatement.getTimestamp(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object, using
the given Calendar object to construct
the Timestamp object. |
int |
JDBCConnection.getTransactionIsolation()
Retrieves this
Connection object's current
transaction isolation level. |
int |
JDBCResultSet.getType()
Retrieves the type of this
ResultSet object. |
com.streamscape.ds.types.Type |
JDBCResultSetMetaData.getType(int column) |
ResultSet |
JDBCDatabaseMetaData.getTypeInfo()
Retrieves a description of all the (JDBC4 clarification:) data types supported by
this database.
|
java.util.Map |
JDBCConnection.getTypeMap()
Retrieves the
Map object associated with this
Connection object. |
ResultSet |
JDBCDatabaseMetaData.getUDTs(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
int[] types)
Retrieves a description of the user-defined types (UDTs) defined
in a particular schema.
|
java.io.InputStream |
JDBCResultSet.getUnicodeStream(int columnIndex)
Deprecated.
use
getCharacterStream in place of
getUnicodeStream |
java.io.InputStream |
JDBCResultSet.getUnicodeStream(java.lang.String columnLabel)
Deprecated.
use
getCharacterStream instead |
int |
JDBCPreparedStatement.getUpdateCount()
Retrieves the current result as an update count;
if the result is a
ResultSet object or there are no more results, -1
is returned. |
int |
JDBCStatement.getUpdateCount()
Retrieves the current result as an update count;
if the result is a
ResultSet object or there are no more results, -1
is returned. |
java.lang.String |
JDBCDatabaseMetaData.getURL()
Retrieves the URL for this DBMS.
|
java.net.URL |
JDBCResultSet.getURL(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.net.URL
object in the Java programming language. |
java.net.URL |
JDBCCallableStatement.getURL(int parameterIndex)
Retrieves the value of the designated JDBC
DATALINK parameter as a
java.net.URL object. |
java.net.URL |
JDBCResultSet.getURL(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.net.URL
object in the Java programming language. |
java.net.URL |
JDBCCallableStatement.getURL(java.lang.String parameterName)
Retrieves the value of a JDBC
DATALINK parameter as a
java.net.URL object. |
java.lang.String |
JDBCDatabaseMetaData.getUserName()
Retrieves the user name as known to this database.
|
ResultSet |
JDBCDatabaseMetaData.getVersionColumns(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of a table's columns that are automatically
updated when any value in a row is updated.
|
SQLWarning |
JDBCResultSet.getWarnings()
Retrieves the first warning reported by calls on this
ResultSet object. |
SQLWarning |
JDBCConnection.getWarnings()
Retrieves the first warning reported by calls on this
Connection object. |
SQLWarning |
JDBCPreparedStatement.getWarnings()
Retrieves the first warning reported by calls on this
Statement object. |
SQLWarning |
JDBCStatement.getWarnings()
Retrieves the first warning reported by calls on this
Statement object. |
void |
JDBCResultSet.insertRow()
Inserts the contents of the insert row into this
ResultSet object and into the database. |
boolean |
JDBCDatabaseMetaData.insertsAreDetected(int type)
Retrieves whether or not a visible row insert can be detected
by calling the method
ResultSet.rowInserted . |
boolean |
JDBCResultSet.isAfterLast()
Retrieves whether the cursor is after the last row in
this
ResultSet object. |
boolean |
JDBCResultSetMetaData.isAutoIncrement(int column)
Indicates whether the designated column is automatically numbered.
|
boolean |
JDBCResultSet.isBeforeFirst()
Retrieves whether the cursor is before the first row in
this
ResultSet object. |
boolean |
JDBCResultSetMetaData.isCaseSensitive(int column)
Indicates whether a column's case matters.
|
boolean |
JDBCDatabaseMetaData.isCatalogAtStart()
Retrieves whether a catalog appears at the start of a fully qualified
table name.
|
boolean |
JDBCResultSet.isClosed()
Retrieves whether this
ResultSet object has been closed. |
boolean |
JDBCConnection.isClosed()
Retrieves whether this
Connection object has been
closed. |
boolean |
JDBCStatement.isClosed()
Retrieves whether this
Statement object has been closed. |
boolean |
JDBCResultSetMetaData.isCurrency(int column)
Indicates whether the designated column is a cash value.
|
boolean |
JDBCResultSetMetaData.isDefinitelyWritable(int column)
Indicates whether a write on the designated column will definitely succeed.
|
boolean |
JDBCResultSet.isFirst()
Retrieves whether the cursor is on the first row of
this
ResultSet object. |
boolean |
JDBCResultSet.isLast()
Retrieves whether the cursor is on the last row of
this
ResultSet object. |
int |
JDBCResultSetMetaData.isNullable(int column)
Indicates the nullability of values in the designated column.
|
int |
JDBCParameterMetaData.isNullable(int param)
Retrieves whether null values are allowed in the designated parameter.
|
boolean |
JDBCPreparedStatement.isPoolable()
Returns a value indicating whether the
Statement
is poolable or not. |
boolean |
JDBCStatement.isPoolable()
Returns a value indicating whether the
Statement
is poolable or not. |
boolean |
JDBCDatabaseMetaData.isReadOnly()
Retrieves whether this database is in read-only mode.
|
boolean |
JDBCConnection.isReadOnly()
Retrieves whether this
Connection
object is in read-only mode. |
boolean |
JDBCResultSetMetaData.isReadOnly(int column)
Indicates whether the designated column is definitely not writable.
|
boolean |
JDBCResultSetMetaData.isSearchable(int column)
Indicates whether the designated column can be used in a where clause.
|
boolean |
JDBCResultSetMetaData.isSigned(int column)
Indicates whether values in the designated column are signed numbers.
|
boolean |
JDBCParameterMetaData.isSigned(int param)
Retrieves whether values for the designated parameter can be signed numbers.
|
boolean |
JDBCConnection.isValid(int timeout)
Returns true if the connection has not been closed and is still valid.
|
boolean |
JDBCDataSource.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCDatabaseMetaData.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCResultSet.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCConnection.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCPreparedStatement.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCResultSetMetaData.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCStatement.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCParameterMetaData.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
JDBCResultSetMetaData.isWritable(int column)
Indicates whether it is possible for a write on the designated column to
succeed.
|
boolean |
JDBCResultSet.last()
Moves the cursor to the last row in
this
ResultSet object. |
long |
JDBCClob.length()
Retrieves the number of characters
in the
CLOB value
designated by this Clob object. |
long |
JDBCBlob.length()
Returns the number of bytes in the
BLOB value
designated by this Blob object. |
long |
JDBCClobClient.length()
Retrieves the number of characters in the
CLOB value
designated by this Clob object. |
long |
JDBCBlobFile.length()
Returns the number of bytes in the
BLOB value
designated by this Blob object. |
long |
JDBCBlobClient.length()
Returns the number of bytes in the
BLOB value designated
by this Blob object. |
long |
JDBCClobFile.length()
Retrieves the number of characters
in the
CLOB value
designated by this Clob object. |
boolean |
JDBCDatabaseMetaData.locatorsUpdateCopy()
Indicates whether updates made to a LOB are made on a copy or directly
to the LOB.
|
void |
JDBCResultSet.moveToCurrentRow()
Moves the cursor to the remembered cursor position, usually the
current row.
|
void |
JDBCResultSet.moveToInsertRow()
Moves the cursor to the insert row.
|
java.lang.String |
JDBCConnection.nativeSQL(java.lang.String sql)
Converts the given SQL statement into the system's native SQL grammar.
|
boolean |
JDBCResultSet.next()
Moves the cursor froward one row from its current position.
|
boolean |
JDBCDatabaseMetaData.nullPlusNonNullIsNull()
Retrieves whether this database supports concatenations between
NULL and non-NULL values being
NULL . |
boolean |
JDBCDatabaseMetaData.nullsAreSortedAtEnd()
Retrieves whether
NULL values are sorted at the end regardless of
sort order. |
boolean |
JDBCDatabaseMetaData.nullsAreSortedAtStart()
Retrieves whether
NULL values are sorted at the start regardless
of sort order. |
boolean |
JDBCDatabaseMetaData.nullsAreSortedHigh()
Retrieves whether
NULL values are sorted high. |
boolean |
JDBCDatabaseMetaData.nullsAreSortedLow()
Retrieves whether
NULL values are sorted low. |
boolean |
JDBCDatabaseMetaData.othersDeletesAreVisible(int type)
Retrieves whether deletes made by others are visible.
|
boolean |
JDBCDatabaseMetaData.othersInsertsAreVisible(int type)
Retrieves whether inserts made by others are visible.
|
boolean |
JDBCDatabaseMetaData.othersUpdatesAreVisible(int type)
Retrieves whether updates made by others are visible.
|
boolean |
JDBCDatabaseMetaData.ownDeletesAreVisible(int type)
Retrieves whether a result set's own deletes are visible.
|
boolean |
JDBCDatabaseMetaData.ownInsertsAreVisible(int type)
Retrieves whether a result set's own inserts are visible.
|
boolean |
JDBCDatabaseMetaData.ownUpdatesAreVisible(int type)
Retrieves whether for the given type of
ResultSet object,
the result set's own updates are visible. |
long |
JDBCBlob.position(Blob pattern,
long start)
Retrieves the byte position in the
BLOB value
designated by this Blob object at which
pattern begins. |
long |
JDBCBlobFile.position(Blob pattern,
long start)
Retrieves the byte position in the
BLOB value
designated by this Blob object at which
pattern begins. |
long |
JDBCBlobClient.position(Blob pattern,
long start)
Retrieves the byte position in the
BLOB value designated
by this Blob object at which pattern begins. |
long |
JDBCBlob.position(byte[] pattern,
long start)
Retrieves the byte position at which the specified byte array
pattern begins within the BLOB
value that this Blob object represents. |
long |
JDBCBlobFile.position(byte[] pattern,
long start)
Retrieves the byte position at which the specified byte array
pattern begins within the BLOB
value that this Blob object represents. |
long |
JDBCBlobClient.position(byte[] pattern,
long start)
Retrieves the byte position at which the specified byte array
pattern begins within the BLOB value that
this Blob object represents. |
long |
JDBCClobFile.position(char[] pattern,
long start)
Retrieves the character position at which the specified char[]
pattern appears in the CLOB value
represented by this Clob object. |
long |
JDBCClob.position(Clob searchstr,
long start)
Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. |
long |
JDBCClobClient.position(Clob searchstr,
long start)
Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. |
long |
JDBCClobFile.position(Clob pattern,
long start)
Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. |
long |
JDBCClob.position(java.lang.String searchstr,
long start)
Retrieves the character position at which the specified substring
searchstr appears in the SQL CLOB value
represented by this Clob object. |
long |
JDBCClobClient.position(java.lang.String searchstr,
long start)
Retrieves the character position at which the specified substring
searchstr appears in the SQL CLOB value
represented by this Clob object. |
long |
JDBCClobFile.position(java.lang.String searchstr,
long start)
Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. |
CallableStatement |
JDBCConnection.prepareCall(java.lang.String sql)
Creates a
CallableStatement object for calling
database stored procedures. |
CallableStatement |
JDBCConnection.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
Creates a
CallableStatement object that will generate
ResultSet objects with the given type and concurrency. |
CallableStatement |
JDBCConnection.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
CallableStatement object that will generate
ResultSet objects with the given type and concurrency. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql)
Creates a
PreparedStatement object for sending
parameterized SQL statements to the database. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql,
int autoGeneratedKeys)
Creates a default
PreparedStatement object that has
the capability to retrieve auto-generated keys. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql,
int[] columnIndexes)
Creates a default
PreparedStatement object capable
of returning the auto-generated keys designated by the given array. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type and concurrency. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type, concurrency,
and holdability. |
PreparedStatement |
JDBCConnection.prepareStatement(java.lang.String sql,
java.lang.String[] columnNames)
Creates a default
PreparedStatement object capable
of returning the auto-generated keys designated by the given array. |
boolean |
JDBCResultSet.previous()
Moves the cursor to the previous row in this
ResultSet object. |
void |
JDBCResultSet.refreshRow()
Refreshes the current row with its most recent value in
the database.
|
void |
JDBCCallableStatement.registerOutParameter(int parameterIndex,
int sqlType)
Registers the OUT parameter in ordinal position
parameterIndex to the JDBC type
sqlType . |
void |
JDBCCallableStatement.registerOutParameter(int parameterIndex,
int sqlType,
int scale)
Registers the parameter in ordinal position
parameterIndex to be of JDBC type
sqlType . |
void |
JDBCCallableStatement.registerOutParameter(int parameterIndex,
int sqlType,
java.lang.String typeName)
Registers the designated output parameter.
|
void |
JDBCCallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType)
Registers the OUT parameter named
parameterName to the JDBC type
sqlType . |
void |
JDBCCallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
int scale)
Registers the parameter named
parameterName to be of JDBC type
sqlType . |
void |
JDBCCallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
Registers the designated output parameter.
|
boolean |
JDBCResultSet.relative(int rows)
Moves the cursor a relative number of rows, either positive or negative.
|
void |
JDBCConnection.releaseSavepoint(Savepoint savepoint)
Removes the specified
Savepoint (JDBC4 Clarification:) and subsequent Savepoint objects from the current
transaction. |
void |
JDBCConnection.reset()
Resets this connection so it can be used again.
|
void |
JDBCConnection.rollback()
Undoes all changes made in the current transaction
and releases any database locks currently held
by this
Connection object. |
void |
JDBCConnection.rollback(Savepoint savepoint)
Undoes all changes made after the given
Savepoint object
was set. |
boolean |
JDBCResultSet.rowDeleted()
Retrieves whether a row has been deleted.
|
boolean |
JDBCResultSet.rowInserted()
Retrieves whether the current row has had an insertion.
|
boolean |
JDBCResultSet.rowUpdated()
Retrieves whether the current row has been updated.
|
void |
JDBCPreparedStatement.setArray(int parameterIndex,
Array x)
Sets the designated parameter to the given
java.sql.Array object. |
void |
JDBCPreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
JDBCPreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCPreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
java.io.OutputStream |
JDBCClob.setAsciiStream(long pos)
Retrieves a stream to be used to write ASCII characters to the
CLOB value that this Clob object represents,
starting at position pos . |
java.io.OutputStream |
JDBCClobClient.setAsciiStream(long pos)
Retrieves a stream to be used to write Ascii characters to the
CLOB value that this Clob object represents,
starting at position pos . |
java.io.OutputStream |
JDBCClobFile.setAsciiStream(long pos)
Retrieves a stream to be used to write Ascii characters to the
CLOB value that this Clob object represents,
starting at position pos . |
void |
JDBCCallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
JDBCCallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCCallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCConnection.setAutoCommit(boolean autoCommit)
Sets this connection's auto-commit mode to the given state.
|
void |
JDBCPreparedStatement.setBigDecimal(int parameterIndex,
java.math.BigDecimal x)
Sets the designated parameter to the given
java.math.BigDecimal value. |
void |
JDBCCallableStatement.setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x)
Sets the designated parameter to the given
java.math.BigDecimal value. |
java.io.OutputStream |
JDBCSQLXML.setBinaryStream()
Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
|
void |
JDBCPreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
JDBCPreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCPreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
java.io.OutputStream |
JDBCBlob.setBinaryStream(long pos)
Retrieves a stream that can be used to write to the
BLOB
value that this Blob object represents. |
java.io.OutputStream |
JDBCBlobFile.setBinaryStream(long pos)
Retrieves a stream that can be used to write to the
BLOB
value that this Blob object represents. |
java.io.OutputStream |
JDBCBlobClient.setBinaryStream(long pos)
Retrieves a stream that can be used to write to the
BLOB
value that this Blob object represents. |
void |
JDBCCallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
JDBCCallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCCallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
JDBCPreparedStatement.setBlob(int parameterIndex,
Blob x)
Sets the designated parameter to the given
java.sql.Blob object. |
void |
JDBCPreparedStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream)
Sets the designated parameter to a
InputStream object. |
void |
JDBCPreparedStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream,
long length)
Sets the designated parameter to a
InputStream object. |
void |
JDBCCallableStatement.setBlob(java.lang.String parameterName,
Blob x)
Sets the designated parameter to the given
java.sql.Blob object. |
void |
JDBCCallableStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream)
Sets the designated parameter to a
InputStream object. |
void |
JDBCCallableStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream,
long length)
Sets the designated parameter to a
InputStream object. |
void |
JDBCPreparedStatement.setBoolean(int parameterIndex,
boolean x)
Sets the designated parameter to the given Java
boolean value. |
void |
JDBCCallableStatement.setBoolean(java.lang.String parameterName,
boolean x)
Sets the designated parameter to the given Java
boolean value. |
void |
JDBCPreparedStatement.setByte(int parameterIndex,
byte x)
Sets the designated parameter to the given Java
byte value. |
void |
JDBCCallableStatement.setByte(java.lang.String parameterName,
byte x)
Sets the designated parameter to the given Java
byte value. |
void |
JDBCPreparedStatement.setBytes(int parameterIndex,
byte[] x)
Sets the designated parameter to the given Java array of bytes.
|
int |
JDBCBlob.setBytes(long pos,
byte[] bytes)
Writes the given array of bytes to the
BLOB value that
this Blob object represents, starting at position
pos , and returns the number of bytes written. |
int |
JDBCBlobFile.setBytes(long pos,
byte[] bytes)
Writes the given array of bytes to the
BLOB value that
this Blob object represents, starting at position
pos , and returns the number of bytes written. |
int |
JDBCBlobClient.setBytes(long pos,
byte[] bytes)
Writes the given array of bytes to the
BLOB value that
this Blob object represents, starting at position
pos , and returns the number of bytes written. |
int |
JDBCBlob.setBytes(long pos,
byte[] bytes,
int offset,
int len)
Writes all or part of the given
byte array to the
BLOB value that this Blob object represents
and returns the number of bytes written. |
int |
JDBCBlobFile.setBytes(long pos,
byte[] bytes,
int offset,
int len)
Writes all or part of the given
byte array to the
BLOB value that this Blob object represents
and returns the number of bytes written. |
int |
JDBCBlobClient.setBytes(long pos,
byte[] bytes,
int offset,
int len)
Writes all or part of the given
byte array to the
BLOB value that this Blob object represents
and returns the number of bytes written. |
void |
JDBCCallableStatement.setBytes(java.lang.String parameterName,
byte[] x)
Sets the designated parameter to the given Java array of bytes.
|
void |
JDBCConnection.setCatalog(java.lang.String catalog)
Sets the given catalog name in order to select
a subspace of this
Connection object's database
in which to work. |
java.io.Writer |
JDBCSQLXML.setCharacterStream()
Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
|
void |
JDBCPreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to the given
Reader
object. |
void |
JDBCPreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
JDBCPreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
java.io.Writer |
JDBCClob.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters
to the
CLOB value that this Clob object
represents, at position pos . |
java.io.Writer |
JDBCClobClient.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters
to the
CLOB value that this Clob object
represents, at position pos . |
java.io.Writer |
JDBCClobFile.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters
to the
CLOB value that this Clob object
represents, at position pos . |
void |
JDBCCallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to the given
Reader
object. |
void |
JDBCCallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
JDBCCallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
JDBCPreparedStatement.setClob(int parameterIndex,
Clob x)
Sets the designated parameter to the given
java.sql.Clob object. |
void |
JDBCPreparedStatement.setClob(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
JDBCPreparedStatement.setClob(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setClob(java.lang.String parameterName,
Clob x)
Sets the designated parameter to the given
java.sql.Clob object. |
void |
JDBCCallableStatement.setClob(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setClob(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCPreparedStatement.setCursorName(java.lang.String name)
Sets the SQL cursor name to the given
String , which
will be used by subsequent Statement object
execute methods. |
void |
JDBCStatement.setCursorName(java.lang.String name)
Sets the SQL cursor name to the given
String , which
will be used by subsequent Statement object
execute methods. |
void |
JDBCPreparedStatement.setDate(int parameterIndex,
Date x)
(JDBC4 clarification:)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
JDBCPreparedStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
JDBCCallableStatement.setDate(java.lang.String parameterName,
Date x)
Sets the designated parameter to the given
java.sql.Date value
(JDBC4 clarification:) |
void |
JDBCCallableStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
JDBCPreparedStatement.setDouble(int parameterIndex,
double x)
Sets the designated parameter to the given Java
double value. |
void |
JDBCCallableStatement.setDouble(java.lang.String parameterName,
double x)
Sets the designated parameter to the given Java
double value. |
void |
JDBCPreparedStatement.setEscapeProcessing(boolean enable)
Sets escape processing on or off.
|
void |
JDBCStatement.setEscapeProcessing(boolean enable)
Sets escape processing on or off.
|
void |
JDBCResultSet.setFetchDirection(int direction)
Gives a hint as to the direction in which the rows in this
ResultSet object will be processed. |
void |
JDBCPreparedStatement.setFetchDirection(int direction)
Gives the driver a hint as to the direction in which
rows will be processed in
ResultSet
objects created using this Statement object. |
void |
JDBCStatement.setFetchDirection(int direction)
Gives the driver a hint as to the direction in which
rows will be processed in
ResultSet
objects created using this Statement object. |
void |
JDBCResultSet.setFetchSize(int rows)
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for this
ResultSet object. |
void |
JDBCPreparedStatement.setFetchSize(int rows)
(JDBC4 clarification:)
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for
ResultSet objects genrated by this Statement . |
void |
JDBCStatement.setFetchSize(int rows)
(JDBC4 clarification:)
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for
ResultSet objects genrated by this Statement . |
void |
JDBCPreparedStatement.setFloat(int parameterIndex,
float x)
Sets the designated parameter to the given Java
float value. |
void |
JDBCCallableStatement.setFloat(java.lang.String parameterName,
float x)
Sets the designated parameter to the given Java
float value. |
void |
JDBCConnection.setHoldability(int holdability)
(JDBC4 Clarification:)
Changes the default holdability of
ResultSet objects
created using this Connection object to the given
holdability. |
void |
JDBCPreparedStatement.setInt(int parameterIndex,
int x)
Sets the designated parameter to the given Java
int value. |
void |
JDBCCallableStatement.setInt(java.lang.String parameterName,
int x)
Sets the designated parameter to the given Java
int value. |
void |
JDBCCommonDataSource.setLoginTimeout(int seconds)
Sets the maximum time in seconds that this data source will wait
while attempting to connect to a database.
|
void |
JDBCCommonDataSource.setLogWriter(java.io.PrintWriter out)
Sets the log writer for this
DataSource
object to the given java.io.PrintWriter object. |
void |
JDBCPreparedStatement.setLong(int parameterIndex,
long x)
Sets the designated parameter to the given Java
long value. |
void |
JDBCCallableStatement.setLong(java.lang.String parameterName,
long x)
Sets the designated parameter to the given Java
long value. |
void |
JDBCPreparedStatement.setMaxFieldSize(int max)
(JDBC4 clarification:) Sets the limit for the maximum number of bytes in a
ResultSet
Sets the limit for the maximum number of bytes that can be returned for
character and binary column values in a ResultSet
object produced by this Statement object. |
void |
JDBCStatement.setMaxFieldSize(int max)
(JDBC4 clarification:) Sets the limit for the maximum number of bytes in a
ResultSet
Sets the limit for the maximum number of bytes that can be returned for
character and binary column values in a ResultSet
object produced by this Statement object. |
void |
JDBCPreparedStatement.setMaxRows(int max)
(JDBC4 clarification:)
Sets the limit for the maximum number of rows that any
ResultSet object generated by this Statement
object can contain to the given number. |
void |
JDBCStatement.setMaxRows(int max)
(JDBC4 clarification:)
Sets the limit for the maximum number of rows that any
ResultSet object generated by this Statement
object can contain to the given number. |
void |
JDBCPreparedStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value)
Sets the designated parameter to a
Reader object. |
void |
JDBCPreparedStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCPreparedStatement.setNClob(int parameterIndex,
NClob value)
Sets the designated parameter to a
java.sql.NClob object. |
void |
JDBCPreparedStatement.setNClob(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
JDBCPreparedStatement.setNClob(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setNClob(java.lang.String parameterName,
NClob value)
Sets the designated parameter to a
java.sql.NClob object. |
void |
JDBCCallableStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
JDBCCallableStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
JDBCConnection.setNetworkTimeout(java.util.concurrent.Executor executor,
int milliseconds)
Sets the maximum period a
Connection or
objects created from the Connection
will wait for the database to reply to any one request. |
void |
JDBCPreparedStatement.setNString(int parameterIndex,
java.lang.String value)
Sets the designated paramter to the given
String object. |
void |
JDBCCallableStatement.setNString(java.lang.String parameterName,
java.lang.String value)
Sets the designated parameter to the given
String object. |
void |
JDBCPreparedStatement.setNull(int parameterIndex,
int sqlType)
Sets the designated parameter to SQL
NULL . |
void |
JDBCPreparedStatement.setNull(int parameterIndex,
int sqlType,
java.lang.String typeName)
Sets the designated parameter to SQL
NULL . |
void |
JDBCCallableStatement.setNull(java.lang.String parameterName,
int sqlType)
Sets the designated parameter to SQL
NULL . |
void |
JDBCCallableStatement.setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
Sets the designated parameter to SQL
NULL . |
void |
JDBCPreparedStatement.setObject(int parameterIndex,
java.lang.Object x) |
void |
JDBCPreparedStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType)
Sets the value of the designated parameter with the given object.
|
void |
JDBCPreparedStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scaleOrLength)
Sets the value of the designated parameter with the given object.
|
void |
JDBCCallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x)
Sets the value of the designated parameter with the given object.
|
void |
JDBCCallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType)
Sets the value of the designated parameter with the given object.
|
void |
JDBCCallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scale)
Sets the value of the designated parameter with the given object.
|
void |
JDBCPreparedStatement.setPoolable(boolean poolable)
Requests that a
Statement be pooled or not pooled. |
void |
JDBCStatement.setPoolable(boolean poolable)
Requests that a
Statement be pooled or not pooled. |
void |
JDBCPreparedStatement.setQueryTimeout(int seconds)
Sets the number of seconds the driver will wait for a
Statement object to execute to the given number of seconds. |
void |
JDBCStatement.setQueryTimeout(int seconds)
Sets the number of seconds the driver will wait for a
Statement object to execute to the given number of seconds. |
void |
JDBCConnection.setReadOnly(boolean readOnly)
Puts this connection in read-only mode as a hint to the driver to enable
database optimizations.
|
void |
JDBCPreparedStatement.setRef(int parameterIndex,
Ref x)
Sets the designated parameter to the given
REF(<structured-type>) value. |
javax.xml.transform.Result |
JDBCSQLXML.setResult(java.lang.Class resultClass)
Returns a Result for setting the XML value designated by this SQLXML instance.
|
void |
JDBCPreparedStatement.setRowId(int parameterIndex,
RowId x)
Sets the designated parameter to the given
java.sql.RowId object. |
void |
JDBCCallableStatement.setRowId(java.lang.String parameterName,
RowId x)
Sets the designated parameter to the given
java.sql.RowId object. |
Savepoint |
JDBCConnection.setSavepoint()
Creates an unnamed savepoint in the current transaction and
returns the new
Savepoint object that represents it. |
Savepoint |
JDBCConnection.setSavepoint(java.lang.String name)
Creates a savepoint with the given name in the current transaction
and returns the new
Savepoint object that represents it. |
void |
JDBCConnection.setSchema(java.lang.String schema)
Sets the given schema name to access.
|
void |
JDBCPreparedStatement.setShort(int parameterIndex,
short x)
Sets the designated parameter to the given Java
short value. |
void |
JDBCCallableStatement.setShort(java.lang.String parameterName,
short x)
Sets the designated parameter to the given Java
short value. |
void |
JDBCPreparedStatement.setSQLXML(int parameterIndex,
SQLXML xmlObject)
Sets the designated parameter to the given
java.sql.SQLXML object. |
void |
JDBCCallableStatement.setSQLXML(java.lang.String parameterName,
SQLXML xmlObject)
Sets the designated parameter to the given
java.sql.SQLXML object. |
void |
JDBCPreparedStatement.setString(int parameterIndex,
java.lang.String x)
Sets the designated parameter to the given Java
String value. |
int |
JDBCClob.setString(long pos,
java.lang.String str)
Writes the given Java
String to the CLOB
value that this Clob object designates at the position
pos . |
int |
JDBCClobClient.setString(long pos,
java.lang.String str)
Writes the given Java
String to the CLOB
value that this Clob object designates at the position
pos . |
int |
JDBCClobFile.setString(long pos,
java.lang.String str)
Writes the given Java
String to the CLOB
value that this Clob object designates at the position
pos . |
int |
JDBCClob.setString(long pos,
java.lang.String str,
int offset,
int len)
Writes
len characters of str , starting
at character offset , to the CLOB value
that this Clob represents. |
int |
JDBCClobClient.setString(long pos,
java.lang.String str,
int offset,
int len)
Writes
len characters of str , starting at
character offset , to the CLOB value that
this Clob represents. |
int |
JDBCClobFile.setString(long pos,
java.lang.String str,
int offset,
int len)
Writes
len characters of str , starting
at character offset , to the CLOB value
that this Clob represents. |
void |
JDBCSQLXML.setString(java.lang.String value)
Sets the XML value designated by this SQLXML instance to the given String representation.
|
void |
JDBCCallableStatement.setString(java.lang.String parameterName,
java.lang.String x)
Sets the designated parameter to the given Java
String value. |
void |
JDBCPreparedStatement.setTime(int parameterIndex,
Time x)
Sets the designated parameter to the given
java.sql.Time value. |
void |
JDBCPreparedStatement.setTime(int parameterIndex,
Time x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Time value,
using the given Calendar object. |
void |
JDBCCallableStatement.setTime(java.lang.String parameterName,
Time x)
Sets the designated parameter to the given
java.sql.Time value. |
void |
JDBCCallableStatement.setTime(java.lang.String parameterName,
Time x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Time value,
using the given Calendar object. |
void |
JDBCPreparedStatement.setTimestamp(int parameterIndex,
Timestamp x)
Sets the designated parameter to the given
java.sql.Timestamp value. |
void |
JDBCPreparedStatement.setTimestamp(int parameterIndex,
Timestamp x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Timestamp value,
using the given Calendar object. |
void |
JDBCCallableStatement.setTimestamp(java.lang.String parameterName,
Timestamp x)
Sets the designated parameter to the given
java.sql.Timestamp value. |
void |
JDBCCallableStatement.setTimestamp(java.lang.String parameterName,
Timestamp x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Timestamp value,
using the given Calendar object. |
void |
JDBCConnection.setTransactionIsolation(int level)
Connection object to the one given. |
void |
JDBCConnection.setTypeMap(java.util.Map map)
Installs the given
TypeMap object as the type map for
this Connection object. |
void |
JDBCPreparedStatement.setUnicodeStream(int parameterIndex,
java.io.InputStream x,
int length)
Deprecated.
Sun does not include a reason, but presumably
this is because setCharacterStream is now prefered
|
void |
JDBCPreparedStatement.setURL(int parameterIndex,
java.net.URL x)
Sets the designated parameter to the given
java.net.URL value. |
void |
JDBCCallableStatement.setURL(java.lang.String parameterName,
java.net.URL val)
Sets the designated parameter to the given
java.net.URL object. |
boolean |
JDBCDatabaseMetaData.storesLowerCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in lower case.
|
boolean |
JDBCDatabaseMetaData.storesLowerCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in lower case.
|
boolean |
JDBCDatabaseMetaData.storesMixedCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in mixed case.
|
boolean |
JDBCDatabaseMetaData.storesMixedCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in mixed case.
|
boolean |
JDBCDatabaseMetaData.storesUpperCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in upper case.
|
boolean |
JDBCDatabaseMetaData.storesUpperCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in upper case.
|
boolean |
JDBCDatabaseMetaData.supportsAlterTableWithAddColumn()
Retrieves whether this database supports
ALTER TABLE
with add column. |
boolean |
JDBCDatabaseMetaData.supportsAlterTableWithDropColumn()
Retrieves whether this database supports
ALTER TABLE
with drop column. |
boolean |
JDBCDatabaseMetaData.supportsANSI92EntryLevelSQL()
Retrieves whether this database supports the ANSI92 entry level SQL
grammar.
|
boolean |
JDBCDatabaseMetaData.supportsANSI92FullSQL()
Retrieves whether this database supports the ANSI92 full SQL grammar supported.
|
boolean |
JDBCDatabaseMetaData.supportsANSI92IntermediateSQL()
Retrieves whether this database supports the ANSI92 intermediate SQL grammar supported.
|
boolean |
JDBCDatabaseMetaData.supportsBatchUpdates()
Retrieves whether this database supports batch updates.
|
boolean |
JDBCDatabaseMetaData.supportsCatalogsInDataManipulation()
Retrieves whether a catalog name can be used in a data manipulation statement.
|
boolean |
JDBCDatabaseMetaData.supportsCatalogsInIndexDefinitions()
Retrieves whether a catalog name can be used in an index definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsCatalogsInPrivilegeDefinitions()
Retrieves whether a catalog name can be used in a privilege definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsCatalogsInProcedureCalls()
Retrieves whether a catalog name can be used in a procedure call statement.
|
boolean |
JDBCDatabaseMetaData.supportsCatalogsInTableDefinitions()
Retrieves whether a catalog name can be used in a table definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsColumnAliasing()
Retrieves whether this database supports column aliasing.
|
boolean |
JDBCDatabaseMetaData.supportsConvert()
(JDBC4 clarification:)
Retrieves whether this database supports the JDBC scalar function
CONVERT for the conversion of one JDBC type to another. |
boolean |
JDBCDatabaseMetaData.supportsConvert(int fromType,
int toType)
(JDBC4 clarification:)
Retrieves whether this database supports the JDBC scalar function
CONVERT for conversions between the JDBC types fromType
and toType. |
boolean |
JDBCDatabaseMetaData.supportsCoreSQLGrammar()
Retrieves whether this database supports the ODBC Core SQL grammar.
|
boolean |
JDBCDatabaseMetaData.supportsCorrelatedSubqueries()
Retrieves whether this database supports correlated subqueries.
|
boolean |
JDBCDatabaseMetaData.supportsDataDefinitionAndDataManipulationTransactions()
Retrieves whether this database supports both data definition and
data manipulation statements within a transaction.
|
boolean |
JDBCDatabaseMetaData.supportsDataManipulationTransactionsOnly()
Retrieves whether this database supports only data manipulation
statements within a transaction.
|
boolean |
JDBCDatabaseMetaData.supportsDifferentTableCorrelationNames()
Retrieves whether, when table correlation names are supported, they
are restricted to being different from the names of the tables.
|
boolean |
JDBCDatabaseMetaData.supportsExpressionsInOrderBy()
Retrieves whether this database supports expressions in
ORDER BY lists. |
boolean |
JDBCDatabaseMetaData.supportsExtendedSQLGrammar()
Retrieves whether this database supports the ODBC Extended SQL grammar.
|
boolean |
JDBCDatabaseMetaData.supportsFullOuterJoins()
Retrieves whether this database supports full nested outer joins.
|
boolean |
JDBCDatabaseMetaData.supportsGetGeneratedKeys()
Retrieves whether auto-generated keys can be retrieved after
a statement has been executed
|
boolean |
JDBCDatabaseMetaData.supportsGroupBy()
Retrieves whether this database supports some form of
GROUP BY clause. |
boolean |
JDBCDatabaseMetaData.supportsGroupByBeyondSelect()
Retrieves whether this database supports using columns not included in
the
SELECT statement in a GROUP BY clause
provided that all of the columns in the SELECT statement
are included in the GROUP BY clause. |
boolean |
JDBCDatabaseMetaData.supportsGroupByUnrelated()
Retrieves whether this database supports using a column that is
not in the
SELECT statement in a
GROUP BY clause. |
boolean |
JDBCDatabaseMetaData.supportsIntegrityEnhancementFacility()
Retrieves whether this database supports the SQL Integrity
Enhancement Facility.
|
boolean |
JDBCDatabaseMetaData.supportsLikeEscapeClause()
Retrieves whether this database supports specifying a
LIKE escape clause. |
boolean |
JDBCDatabaseMetaData.supportsLimitedOuterJoins()
Retrieves whether this database provides limited support for outer
joins.
|
boolean |
JDBCDatabaseMetaData.supportsMinimumSQLGrammar()
Retrieves whether this database supports the ODBC Minimum SQL grammar.
|
boolean |
JDBCDatabaseMetaData.supportsMixedCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
JDBCDatabaseMetaData.supportsMixedCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
JDBCDatabaseMetaData.supportsMultipleOpenResults()
Retrieves whether it is possible to have multiple
ResultSet objects
returned from a CallableStatement object
simultaneously. |
boolean |
JDBCDatabaseMetaData.supportsMultipleResultSets()
Retrieves whether this database supports getting multiple
ResultSet objects from a single call to the
method execute . |
boolean |
JDBCDatabaseMetaData.supportsMultipleTransactions()
Retrieves whether this database allows having multiple
transactions open at once (on different connections).
|
boolean |
JDBCDatabaseMetaData.supportsNamedParameters()
Retrieves whether this database supports named parameters to callable
statements.
|
boolean |
JDBCDatabaseMetaData.supportsNonNullableColumns()
Retrieves whether columns in this database may be defined as non-nullable.
|
boolean |
JDBCDatabaseMetaData.supportsOpenCursorsAcrossCommit()
Retrieves whether this database supports keeping cursors open
across commits.
|
boolean |
JDBCDatabaseMetaData.supportsOpenCursorsAcrossRollback()
Retrieves whether this database supports keeping cursors open
across rollbacks.
|
boolean |
JDBCDatabaseMetaData.supportsOpenStatementsAcrossCommit()
Retrieves whether this database supports keeping statements open
across commits.
|
boolean |
JDBCDatabaseMetaData.supportsOpenStatementsAcrossRollback()
Retrieves whether this database supports keeping statements open
across rollbacks.
|
boolean |
JDBCDatabaseMetaData.supportsOrderByUnrelated()
Retrieves whether this database supports using a column that is
not in the
SELECT statement in an
ORDER BY clause. |
boolean |
JDBCDatabaseMetaData.supportsOuterJoins()
Retrieves whether this database supports some form of outer join.
|
boolean |
JDBCDatabaseMetaData.supportsPositionedDelete()
Retrieves whether this database supports positioned
DELETE
statements. |
boolean |
JDBCDatabaseMetaData.supportsPositionedUpdate()
Retrieves whether this database supports positioned
UPDATE
statements. |
boolean |
JDBCDatabaseMetaData.supportsResultSetConcurrency(int type,
int concurrency)
Retrieves whether this database supports the given concurrency type
in combination with the given result set type.
|
boolean |
JDBCDatabaseMetaData.supportsResultSetHoldability(int holdability)
Retrieves whether this database supports the given result set holdability.
|
boolean |
JDBCDatabaseMetaData.supportsResultSetType(int type)
Retrieves whether this database supports the given result set type.
|
boolean |
JDBCDatabaseMetaData.supportsSavepoints()
Retrieves whether this database supports savepoints.
|
boolean |
JDBCDatabaseMetaData.supportsSchemasInDataManipulation()
Retrieves whether a schema name can be used in a data manipulation statement.
|
boolean |
JDBCDatabaseMetaData.supportsSchemasInIndexDefinitions()
Retrieves whether a schema name can be used in an index definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsSchemasInPrivilegeDefinitions()
Retrieves whether a schema name can be used in a privilege definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsSchemasInProcedureCalls()
Retrieves whether a schema name can be used in a procedure call statement.
|
boolean |
JDBCDatabaseMetaData.supportsSchemasInTableDefinitions()
Retrieves whether a schema name can be used in a table definition statement.
|
boolean |
JDBCDatabaseMetaData.supportsSelectForUpdate()
Retrieves whether this database supports
SELECT FOR UPDATE
statements. |
boolean |
JDBCDatabaseMetaData.supportsStatementPooling()
Retrieves whether this database supports statement pooling.
|
boolean |
JDBCDatabaseMetaData.supportsStoredFunctionsUsingCallSyntax()
Retrieves whether this database supports invoking user-defined or vendor functions
using the stored procedure escape syntax.
|
boolean |
JDBCDatabaseMetaData.supportsStoredProcedures()
Retrieves whether this database supports stored procedure calls
that use the stored procedure escape syntax.
|
boolean |
JDBCDatabaseMetaData.supportsSubqueriesInComparisons()
Retrieves whether this database supports subqueries in comparison
expressions.
|
boolean |
JDBCDatabaseMetaData.supportsSubqueriesInExists()
Retrieves whether this database supports subqueries in
EXISTS expressions. |
boolean |
JDBCDatabaseMetaData.supportsSubqueriesInIns()
(JDBC4 correction:)
Retrieves whether this database supports subqueries in
IN expressions. |
boolean |
JDBCDatabaseMetaData.supportsSubqueriesInQuantifieds()
Retrieves whether this database supports subqueries in quantified
expressions.
|
boolean |
JDBCDatabaseMetaData.supportsTableCorrelationNames()
Retrieves whether this database supports table correlation names.
|
boolean |
JDBCDatabaseMetaData.supportsTransactionIsolationLevel(int level)
Retrieves whether this database supports the given transaction isolation level.
|
boolean |
JDBCDatabaseMetaData.supportsTransactions()
Retrieves whether this database supports transactions.
|
boolean |
JDBCDatabaseMetaData.supportsUnion()
Retrieves whether this database supports SQL
UNION . |
boolean |
JDBCDatabaseMetaData.supportsUnionAll()
Retrieves whether this database supports SQL
UNION ALL . |
void |
JDBCClob.truncate(long len)
Truncates the
CLOB value that this Clob
designates to have a length of len
characters. |
void |
JDBCBlob.truncate(long len)
Truncates the
BLOB value that this Blob
object represents to be len bytes in length. |
void |
JDBCClobClient.truncate(long len)
Truncates the
CLOB value that this Clob
designates to have a length of len characters. |
void |
JDBCBlobFile.truncate(long len)
Truncates the
BLOB value that this Blob
object represents to be len bytes in length. |
void |
JDBCBlobClient.truncate(long len)
Truncates the
BLOB value that this Blob
object represents to be len bytes in length. |
void |
JDBCClobFile.truncate(long len)
Truncates the
CLOB value that this Clob
designates to have a length of len
characters. |
java.lang.Object |
JDBCDataSource.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCDatabaseMetaData.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to non-standard methods,
or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCResultSet.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCConnection.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCPreparedStatement.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCResultSetMetaData.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCStatement.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
java.lang.Object |
JDBCParameterMetaData.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
void |
JDBCResultSet.updateArray(int columnIndex,
Array x)
Updates the designated column with a
java.sql.Array value. |
void |
JDBCResultSet.updateArray(java.lang.String columnLabel,
Array x)
Updates the designated column with a
java.sql.Array value. |
void |
JDBCResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x)
Updates the designated column with an ascii stream value.
|
void |
JDBCResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
(JDBC4 clarification:)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
long length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x)
Updates the designated column with an ascii stream value.
|
void |
JDBCResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
int length)
(JDBC4 clarification:)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
long length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes..
|
void |
JDBCResultSet.updateBigDecimal(int columnIndex,
java.math.BigDecimal x)
Updates the designated column with a
java.math.BigDecimal
value. |
void |
JDBCResultSet.updateBigDecimal(java.lang.String columnLabel,
java.math.BigDecimal x)
Updates the designated column with a
java.sql.BigDecimal
value. |
void |
JDBCResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x)
Updates the designated column with a binary stream value.
|
void |
JDBCResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
(JDBC4 clarification:)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
long length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x)
Updates the designated column with a binary stream value.
|
void |
JDBCResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
int length)
(JDBC4 clarification:)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
long length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateBlob(int columnIndex,
Blob x)
Updates the designated column with a
java.sql.Blob value. |
void |
JDBCResultSet.updateBlob(int columnIndex,
java.io.InputStream inputStream)
Updates the designated column using the given input stream.
|
void |
JDBCResultSet.updateBlob(int columnIndex,
java.io.InputStream inputStream,
long length)
Updates the designated column using the given input stream, which
will have the specified number of bytes.
|
void |
JDBCResultSet.updateBlob(java.lang.String columnLabel,
Blob x)
Updates the designated column with a
java.sql.Blob value. |
void |
JDBCResultSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream)
Updates the designated column using the given input stream.
|
void |
JDBCResultSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream,
long length)
Updates the designated column using the given input stream, which
will have the specified number of bytes.
|
void |
JDBCResultSet.updateBoolean(int columnIndex,
boolean x)
Updates the designated column with a
boolean value. |
void |
JDBCResultSet.updateBoolean(java.lang.String columnLabel,
boolean x)
Updates the designated column with a
boolean value. |
void |
JDBCResultSet.updateByte(int columnIndex,
byte x)
Updates the designated column with a
byte value. |
void |
JDBCResultSet.updateByte(java.lang.String columnLabel,
byte x)
Updates the designated column with a
byte value. |
void |
JDBCResultSet.updateBytes(int columnIndex,
byte[] x)
Updates the designated column with a
byte array value. |
void |
JDBCResultSet.updateBytes(java.lang.String columnLabel,
byte[] x)
Updates the designated column with a byte array value.
|
void |
JDBCResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x)
Updates the designated column with a character stream value.
|
void |
JDBCResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
(JDBC4 clarification:)
Updates the designated column with a character stream value, which will have
the specified number of (CHECKME: characters?) bytes.
|
void |
JDBCResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column with a character stream value.
|
void |
JDBCResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
int length)
(JDBC4 clarification)
Updates the designated column with a character stream value, which will have
the specified number of (CHECKME: characters?) bytes.
|
void |
JDBCResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateClob(int columnIndex,
Clob x)
Updates the designated column with a
java.sql.Clob value. |
void |
JDBCResultSet.updateClob(int columnIndex,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
JDBCResultSet.updateClob(int columnIndex,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
JDBCResultSet.updateClob(java.lang.String columnLabel,
Clob x)
Updates the designated column with a
java.sql.Clob value. |
void |
JDBCResultSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
JDBCResultSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
JDBCResultSet.updateDate(int columnIndex,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
JDBCResultSet.updateDate(java.lang.String columnLabel,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
JDBCResultSet.updateDouble(int columnIndex,
double x)
Updates the designated column with a
double value. |
void |
JDBCResultSet.updateDouble(java.lang.String columnLabel,
double x)
Updates the designated column with a
double value. |
void |
JDBCResultSet.updateFloat(int columnIndex,
float x)
Updates the designated column with a
float value. |
void |
JDBCResultSet.updateFloat(java.lang.String columnLabel,
float x)
Updates the designated column with a
float value. |
void |
JDBCResultSet.updateInt(int columnIndex,
int x)
Updates the designated column with an
int value. |
void |
JDBCResultSet.updateInt(java.lang.String columnLabel,
int x)
Updates the designated column with an
int value. |
void |
JDBCResultSet.updateLong(int columnIndex,
long x)
Updates the designated column with a
long value. |
void |
JDBCResultSet.updateLong(java.lang.String columnLabel,
long x)
Updates the designated column with a
long value. |
void |
JDBCResultSet.updateNCharacterStream(int columnIndex,
java.io.Reader reader)
Updates the designated column with a character stream value.
|
void |
JDBCResultSet.updateNCharacterStream(int columnIndex,
java.io.Reader x,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column with a character stream value.
|
void |
JDBCResultSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
JDBCResultSet.updateNClob(int columnIndex,
NClob nClob)
Updates the designated column with a
java.sql.NClob value. |
void |
JDBCResultSet.updateNClob(int columnIndex,
java.io.Reader reader)
Updates the designated column using the given
Reader
The data will be read from the stream
as needed until end-of-stream is reached. |
void |
JDBCResultSet.updateNClob(int columnIndex,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
JDBCResultSet.updateNClob(java.lang.String columnLabel,
NClob nClob)
Updates the designated column with a
java.sql.NClob value. |
void |
JDBCResultSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
JDBCResultSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
JDBCResultSet.updateNString(int columnIndex,
java.lang.String nString)
Updates the designated column with a
String value. |
void |
JDBCResultSet.updateNString(java.lang.String columnLabel,
java.lang.String nString)
Updates the designated column with a
String value. |
void |
JDBCResultSet.updateNull(int columnIndex)
(JDBC4 clarification:)
Updates the designated column with a
null value. |
void |
JDBCResultSet.updateNull(java.lang.String columnLabel)
Updates the designated column with a
null value. |
void |
JDBCResultSet.updateObject(int columnIndex,
java.lang.Object x)
Updates the designated column with an
Object value. |
void |
JDBCResultSet.updateObject(int columnIndex,
java.lang.Object x,
int scaleOrLength)
Updates the designated column with an
Object value. |
void |
JDBCResultSet.updateObject(java.lang.String columnLabel,
java.lang.Object x)
Updates the designated column with an
Object value. |
void |
JDBCResultSet.updateObject(java.lang.String columnLabel,
java.lang.Object x,
int scaleOrLength)
Updates the designated column with an
Object value. |
void |
JDBCResultSet.updateRef(int columnIndex,
Ref x)
Updates the designated column with a
java.sql.Ref value. |
void |
JDBCResultSet.updateRef(java.lang.String columnLabel,
Ref x)
Updates the designated column with a
java.sql.Ref value. |
void |
JDBCResultSet.updateRow()
Updates the underlying database with the new contents of the
current row of this
ResultSet object. |
void |
JDBCResultSet.updateRowId(int columnIndex,
RowId x)
Updates the designated column with a
RowId value. |
void |
JDBCResultSet.updateRowId(java.lang.String columnLabel,
RowId x)
Updates the designated column with a
RowId value. |
boolean |
JDBCDatabaseMetaData.updatesAreDetected(int type)
Retrieves whether or not a visible row update can be detected by
calling the method
ResultSet.rowUpdated . |
void |
JDBCResultSet.updateShort(int columnIndex,
short x)
Updates the designated column with a
short value. |
void |
JDBCResultSet.updateShort(java.lang.String columnLabel,
short x)
Updates the designated column with a
short value. |
void |
JDBCResultSet.updateSQLXML(int columnIndex,
SQLXML xmlObject)
Updates the designated column with a
java.sql.SQLXML value. |
void |
JDBCResultSet.updateSQLXML(java.lang.String columnLabel,
SQLXML xmlObject)
Updates the designated column with a
java.sql.SQLXML value. |
void |
JDBCResultSet.updateString(int columnIndex,
java.lang.String x)
Updates the designated column with a
String value. |
void |
JDBCResultSet.updateString(java.lang.String columnLabel,
java.lang.String x)
Updates the designated column with a
String value. |
void |
JDBCResultSet.updateTime(int columnIndex,
Time x)
Updates the designated column with a
java.sql.Time value. |
void |
JDBCResultSet.updateTime(java.lang.String columnLabel,
Time x)
Updates the designated column with a
java.sql.Time value. |
void |
JDBCResultSet.updateTimestamp(int columnIndex,
Timestamp x)
Updates the designated column with a
java.sql.Timestamp
value. |
void |
JDBCResultSet.updateTimestamp(java.lang.String columnLabel,
Timestamp x)
Updates the designated column with a
java.sql.Timestamp
value. |
boolean |
JDBCDatabaseMetaData.usesLocalFilePerTable()
Retrieves whether this database uses a file for each table.
|
boolean |
JDBCDatabaseMetaData.usesLocalFiles()
Retrieves whether this database stores tables in a local file.
|
boolean |
JDBCResultSet.wasNull()
Reports whether
the last column read had a value of SQL
NULL . |
boolean |
JDBCCallableStatement.wasNull()
Retrieves whether the last OUT parameter read had the value of
SQL
NULL . |
Constructor and Description |
---|
JDBCBlob(byte[] data)
Constructs a new JDBCBlob instance wrapping the given octet sequence.
|
JDBCBlobFile()
Convenience constructor; equivalent to JDBCBlobFile(true);
|
JDBCBlobFile(boolean deleteOnFree)
Constructs a new instance backed by a File object created in response
to invoking File.createTempFile(TEMP_FILE_PREFIX,TEMP_FILE_SUFFIX)
|
JDBCBlobFile(java.io.File file)
Convenience constructor; equivalent to JDBCBlobFile(file, false);
|
JDBCBlobFile(java.io.File file,
boolean deleteOnFree)
Constructs a new instance backed by the given File object.
|
JDBCCallableStatement(JDBCConnection c,
java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Constructs a new JDBCCallableStatement with the specified connection and
result type.
|
JDBCClob(java.lang.String data)
Constructs a new JDBCClob object wrapping the given character
sequence.
|
JDBCClobFile()
Convenience constructor for
JDBCClobFile((String)null) . |
JDBCClobFile(java.io.File file)
Convenience constructor for
JDBCClobFile(file,null) . |
JDBCClobFile(java.io.File file,
java.lang.String encoding)
Constructs a new JDBCClobFile instance backed by the given File object
using the given encoding to read and write file content.
|
JDBCClobFile(java.lang.String encoding)
Constructs a new JDBCClobFile instance backed by an File object
created by File.createTempFile(TEMP_FILE_PREFIX, TEMP_FILE_SUFFIX),
using the given encoding to read and write file content.
|
JDBCConnection(com.streamscape.ds.persist.BaseStoreProperties props,
java.lang.String connType,
java.lang.String path,
java.lang.String initialDataspace,
User user) |
JDBCNClob(java.lang.String data) |
JDBCResultSet(JDBCConnection conn,
com.streamscape.ds.jdbc.JDBCStatementBase s,
com.streamscape.ds.result.Result r,
com.streamscape.ds.result.ResultMetaData metaData)
Constructs a new
JDBCResultSet object using the specified
navigator and org.hsqldb.result.ResultMetaData . |
JDBCRowId(byte[] id)
Constructs a new JDBCRowId instance wrapping the given octet sequence.
|
JDBCRowId(RowId id)
Constructs a new JDBCRowId instance whose internal octet sequence is
is a copy of the octet sequence of the given RowId object.
|
JDBCRowId(java.lang.String hex)
Constructs a new JDBCRowId instance whose internal octet sequence is
is that represented by the given hexidecimal character sequence.
|
JDBCSavepoint(java.lang.String name,
JDBCConnection conn) |
JDBCSQLXML(javax.xml.transform.Source source)
Constructs a new read-only JDBCSQLXML object from the given Source
object.
|
Modifier and Type | Method and Description |
---|---|
void |
JDBCXAConnection.close() |
void |
JDBCXAConnectionWrapper.commit()
Interceptor method, because this method is prohibited within
any global transaction.
|
Connection |
JDBCXAConnection.getConnection()
Returns a connection that can be used by the user application.
|
javax.sql.PooledConnection |
JDBCPooledDataSource.getPooledConnection() |
javax.sql.PooledConnection |
JDBCPooledDataSource.getPooledConnection(java.lang.String user,
java.lang.String password) |
javax.sql.XAConnection |
JDBCXADataSource.getXAConnection()
Get new XAConnection connection, to be managed by a connection manager.
|
javax.sql.XAConnection |
JDBCXADataSource.getXAConnection(java.lang.String user,
java.lang.String password)
Gets a new XAConnection after validating the given username
and password.
|
javax.transaction.xa.XAResource |
JDBCXAConnection.getXAResource() |
void |
JDBCXAConnectionWrapper.rollback()
Interceptor method, because this method is prohibited within
any global transaction.
|
void |
JDBCXAConnectionWrapper.rollback(Savepoint savepoint)
Interceptor method, because this method is prohibited within
any global transaction.
|
void |
JDBCXAConnectionWrapper.setAutoCommit(boolean autoCommit)
Interceptor method, because this method is prohibited within
any global transaction.
|
Savepoint |
JDBCXAConnectionWrapper.setSavepoint()
Interceptor method, because this method is prohibited within
any global transaction.
|
Savepoint |
JDBCXAConnectionWrapper.setSavepoint(java.lang.String name)
Interceptor method, because this method is prohibited within
any global transaction.
|
void |
JDBCXAConnectionWrapper.setTransactionIsolation(int level)
Interceptor method, because there may be XA implications to
calling the method within a global transaction.
|
Constructor and Description |
---|
JDBCXAConnectionWrapper(JDBCXAResource xaResource,
JDBCConnection databaseConnection) |
JDBCXADataSource() |
Modifier and Type | Method and Description |
---|---|
static Statement |
DataspaceAccessorProxy.createStatementAndExecute(Connection connection,
java.lang.String query,
int fetchSize) |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
VirtualServerObject.formatSQLExceptionMessage(Connection connection,
SQLException exception) |
static DataspaceException |
VirtualServerObject.sqlToDataspaceException(Connection connection,
SQLException exception) |
Modifier and Type | Method and Description |
---|---|
RowSet |
DataFrame.toRowSet() |
Modifier and Type | Method and Description |
---|---|
void |
DatabaseConnectionDelegate.abort(java.util.concurrent.Executor executor) |
void |
DatabasePreparedConnectionStatement.addBatch() |
void |
DatabaseConnectionStatement.addBatch(java.lang.String sql) |
void |
DatabaseConnectionStatement.cancel() |
void |
DatabaseConnectionStatement.clearBatch() |
void |
DatabasePreparedConnectionStatement.clearParameters() |
void |
DatabaseConnectionDelegate.clearWarnings() |
void |
DatabaseConnectionStatement.clearWarnings() |
void |
DatabaseConnectionDelegate.close() |
void |
DatabaseConnectionStatement.close() |
void |
DatabaseConnectionStatement.closeOnCompletion()
This method is not supported yet.
|
void |
DatabaseConnectionDelegate.commit() |
Array |
DatabaseConnectionDelegate.createArrayOf(java.lang.String typeName,
java.lang.Object[] elements) |
Blob |
DatabaseConnectionDelegate.createBlob() |
Clob |
DatabaseConnectionDelegate.createClob() |
NClob |
DatabaseConnectionDelegate.createNClob() |
SQLXML |
DatabaseConnectionDelegate.createSQLXML() |
Statement |
DatabaseConnectionDelegate.createStatement() |
Statement |
DatabaseConnectionDelegate.createStatement(int resultSetType,
int resultSetConcurrency) |
Statement |
DatabaseConnectionDelegate.createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
Struct |
DatabaseConnectionDelegate.createStruct(java.lang.String typeName,
java.lang.Object[] attributes) |
boolean |
DatabasePreparedConnectionStatement.execute() |
boolean |
DatabaseConnectionStatement.execute(java.lang.String sql) |
boolean |
DatabaseConnectionStatement.execute(java.lang.String sql,
int autoGeneratedKeys) |
boolean |
DatabaseConnectionStatement.execute(java.lang.String sql,
int[] columnIndexes) |
boolean |
DatabaseConnectionStatement.execute(java.lang.String sql,
java.lang.String[] columnNames) |
int[] |
DatabaseConnectionStatement.executeBatch() |
ResultSet |
DatabasePreparedConnectionStatement.executeQuery() |
ResultSet |
DatabaseConnectionStatement.executeQuery(java.lang.String sql) |
int |
DatabasePreparedConnectionStatement.executeUpdate() |
int |
DatabaseConnectionStatement.executeUpdate(java.lang.String sql) |
int |
DatabaseConnectionStatement.executeUpdate(java.lang.String sql,
int autoGeneratedKeys) |
int |
DatabaseConnectionStatement.executeUpdate(java.lang.String sql,
int[] columnIndexes) |
int |
DatabaseConnectionStatement.executeUpdate(java.lang.String sql,
java.lang.String[] columnNames) |
Array |
DatabaseCallableConnectionStatement.getArray(int parameterIndex) |
Array |
DatabaseCallableConnectionStatement.getArray(java.lang.String parameterName) |
boolean |
DatabaseConnectionDelegate.getAutoCommit() |
java.math.BigDecimal |
DatabaseCallableConnectionStatement.getBigDecimal(int parameterIndex) |
java.math.BigDecimal |
DatabaseCallableConnectionStatement.getBigDecimal(int parameterIndex,
int scale) |
java.math.BigDecimal |
DatabaseCallableConnectionStatement.getBigDecimal(java.lang.String parameterName) |
Blob |
DatabaseCallableConnectionStatement.getBlob(int parameterIndex) |
Blob |
DatabaseCallableConnectionStatement.getBlob(java.lang.String parameterName) |
boolean |
DatabaseCallableConnectionStatement.getBoolean(int parameterIndex) |
boolean |
DatabaseCallableConnectionStatement.getBoolean(java.lang.String parameterName) |
byte |
DatabaseCallableConnectionStatement.getByte(int parameterIndex) |
byte |
DatabaseCallableConnectionStatement.getByte(java.lang.String parameterName) |
byte[] |
DatabaseCallableConnectionStatement.getBytes(int parameterIndex) |
byte[] |
DatabaseCallableConnectionStatement.getBytes(java.lang.String parameterName) |
java.lang.String |
DatabaseConnectionDelegate.getCatalog() |
java.io.Reader |
DatabaseCallableConnectionStatement.getCharacterStream(int parameterIndex) |
java.io.Reader |
DatabaseCallableConnectionStatement.getCharacterStream(java.lang.String parameterName) |
java.util.Properties |
DatabaseConnectionDelegate.getClientInfo() |
java.lang.String |
DatabaseConnectionDelegate.getClientInfo(java.lang.String name) |
Clob |
DatabaseCallableConnectionStatement.getClob(int parameterIndex) |
Clob |
DatabaseCallableConnectionStatement.getClob(java.lang.String parameterName) |
Connection |
DatabaseConnectionStatement.getConnection() |
Date |
DatabaseCallableConnectionStatement.getDate(int parameterIndex) |
Date |
DatabaseCallableConnectionStatement.getDate(int parameterIndex,
java.util.Calendar cal) |
Date |
DatabaseCallableConnectionStatement.getDate(java.lang.String parameterName) |
Date |
DatabaseCallableConnectionStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal) |
double |
DatabaseCallableConnectionStatement.getDouble(int parameterIndex) |
double |
DatabaseCallableConnectionStatement.getDouble(java.lang.String parameterName) |
int |
DatabaseConnectionStatement.getFetchDirection() |
int |
DatabaseConnectionStatement.getFetchSize() |
float |
DatabaseCallableConnectionStatement.getFloat(int parameterIndex) |
float |
DatabaseCallableConnectionStatement.getFloat(java.lang.String parameterName) |
ResultSet |
DatabaseConnectionStatement.getGeneratedKeys() |
int |
DatabaseConnectionDelegate.getHoldability() |
int |
DatabaseCallableConnectionStatement.getInt(int parameterIndex) |
int |
DatabaseCallableConnectionStatement.getInt(java.lang.String parameterName) |
long |
DatabaseCallableConnectionStatement.getLong(int parameterIndex) |
long |
DatabaseCallableConnectionStatement.getLong(java.lang.String parameterName) |
int |
DatabaseConnectionStatement.getMaxFieldSize() |
int |
DatabaseConnectionStatement.getMaxRows() |
DatabaseMetaData |
DatabaseConnectionDelegate.getMetaData() |
ResultSetMetaData |
DatabasePreparedConnectionStatement.getMetaData() |
boolean |
DatabaseConnectionStatement.getMoreResults() |
boolean |
DatabaseConnectionStatement.getMoreResults(int current) |
java.io.Reader |
DatabaseCallableConnectionStatement.getNCharacterStream(int parameterIndex) |
java.io.Reader |
DatabaseCallableConnectionStatement.getNCharacterStream(java.lang.String parameterName) |
NClob |
DatabaseCallableConnectionStatement.getNClob(int parameterIndex) |
NClob |
DatabaseCallableConnectionStatement.getNClob(java.lang.String parameterName) |
int |
DatabaseConnectionDelegate.getNetworkTimeout() |
java.lang.String |
DatabaseCallableConnectionStatement.getNString(int parameterIndex) |
java.lang.String |
DatabaseCallableConnectionStatement.getNString(java.lang.String parameterName) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(int parameterIndex) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(int parameterIndex,
java.lang.Class type) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(int parameterIndex,
java.util.Map map) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(java.lang.String parameterName) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(java.lang.String parameterName,
java.lang.Class type) |
java.lang.Object |
DatabaseCallableConnectionStatement.getObject(java.lang.String parameterName,
java.util.Map map) |
ParameterMetaData |
DatabasePreparedConnectionStatement.getParameterMetaData() |
int |
DatabaseConnectionStatement.getQueryTimeout() |
Ref |
DatabaseCallableConnectionStatement.getRef(int parameterIndex) |
Ref |
DatabaseCallableConnectionStatement.getRef(java.lang.String parameterName) |
ResultSet |
DatabaseConnectionStatement.getResultSet() |
int |
DatabaseConnectionStatement.getResultSetConcurrency() |
int |
DatabaseConnectionStatement.getResultSetHoldability() |
int |
DatabaseConnectionStatement.getResultSetType() |
RowId |
DatabaseCallableConnectionStatement.getRowId(int parameterIndex) |
RowId |
DatabaseCallableConnectionStatement.getRowId(java.lang.String parameterName) |
java.lang.String |
DatabaseConnectionDelegate.getSchema() |
short |
DatabaseCallableConnectionStatement.getShort(int parameterIndex) |
short |
DatabaseCallableConnectionStatement.getShort(java.lang.String parameterName) |
SQLXML |
DatabaseCallableConnectionStatement.getSQLXML(int parameterIndex) |
SQLXML |
DatabaseCallableConnectionStatement.getSQLXML(java.lang.String parameterName) |
java.lang.String |
DatabaseCallableConnectionStatement.getString(int parameterIndex) |
java.lang.String |
DatabaseCallableConnectionStatement.getString(java.lang.String parameterName) |
Time |
DatabaseCallableConnectionStatement.getTime(int parameterIndex) |
Time |
DatabaseCallableConnectionStatement.getTime(int parameterIndex,
java.util.Calendar cal) |
Time |
DatabaseCallableConnectionStatement.getTime(java.lang.String parameterName) |
Time |
DatabaseCallableConnectionStatement.getTime(java.lang.String parameterName,
java.util.Calendar cal) |
Timestamp |
DatabaseCallableConnectionStatement.getTimestamp(int parameterIndex) |
Timestamp |
DatabaseCallableConnectionStatement.getTimestamp(int parameterIndex,
java.util.Calendar cal) |
Timestamp |
DatabaseCallableConnectionStatement.getTimestamp(java.lang.String parameterName) |
Timestamp |
DatabaseCallableConnectionStatement.getTimestamp(java.lang.String parameterName,
java.util.Calendar cal) |
int |
DatabaseConnectionDelegate.getTransactionIsolation() |
java.util.Map |
DatabaseConnectionDelegate.getTypeMap() |
int |
DatabaseConnectionStatement.getUpdateCount() |
java.net.URL |
DatabaseCallableConnectionStatement.getURL(int parameterIndex) |
java.net.URL |
DatabaseCallableConnectionStatement.getURL(java.lang.String parameterName) |
SQLWarning |
DatabaseConnectionDelegate.getWarnings() |
SQLWarning |
DatabaseConnectionStatement.getWarnings() |
boolean |
DatabaseConnectionDelegate.isClosed() |
boolean |
DatabaseConnectionStatement.isClosed() |
boolean |
DatabaseConnectionStatement.isCloseOnCompletion()
This method is not supported yet.
|
boolean |
DatabaseConnectionStatement.isPoolable() |
boolean |
DatabaseConnectionDelegate.isReadOnly() |
boolean |
DatabaseConnectionDelegate.isValid(int timeout) |
boolean |
DatabaseConnectionDelegate.isWrapperFor(java.lang.Class iface) |
boolean |
DatabaseConnectionStatement.isWrapperFor(java.lang.Class iface) |
java.lang.String |
DatabaseConnectionDelegate.nativeSQL(java.lang.String sql) |
CallableStatement |
DatabaseConnectionDelegate.prepareCall(java.lang.String sql) |
CallableStatement |
DatabaseConnectionDelegate.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency) |
CallableStatement |
DatabaseConnectionDelegate.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql,
int autoGeneratedKeys) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql,
int[] columnIndexes) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability) |
PreparedStatement |
DatabaseConnectionDelegate.prepareStatement(java.lang.String sql,
java.lang.String[] columnNames) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(int parameterIndex,
int sqlType) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(int parameterIndex,
int sqlType,
int scale) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(int parameterIndex,
int sqlType,
java.lang.String typeName) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(java.lang.String parameterName,
int sqlType) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
int scale) |
void |
DatabaseCallableConnectionStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
java.lang.String typeName) |
void |
DatabaseConnectionDelegate.releaseSavepoint(Savepoint savepoint) |
void |
DatabaseConnectionDelegate.rollback() |
void |
DatabaseConnectionDelegate.rollback(Savepoint savepoint) |
void |
DatabasePreparedConnectionStatement.setArray(int parameterIndex,
Array x) |
void |
DatabasePreparedConnectionStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x) |
void |
DatabasePreparedConnectionStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length) |
void |
DatabasePreparedConnectionStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
long length) |
void |
DatabaseCallableConnectionStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x) |
void |
DatabaseCallableConnectionStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length) |
void |
DatabaseCallableConnectionStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
long length) |
void |
DatabaseConnectionDelegate.setAutoCommit(boolean autoCommit) |
void |
DatabasePreparedConnectionStatement.setBigDecimal(int parameterIndex,
java.math.BigDecimal x) |
void |
DatabaseCallableConnectionStatement.setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x) |
void |
DatabasePreparedConnectionStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x) |
void |
DatabasePreparedConnectionStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length) |
void |
DatabasePreparedConnectionStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
long length) |
void |
DatabaseCallableConnectionStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x) |
void |
DatabaseCallableConnectionStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length) |
void |
DatabaseCallableConnectionStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
long length) |
void |
DatabasePreparedConnectionStatement.setBlob(int parameterIndex,
Blob x) |
void |
DatabasePreparedConnectionStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream) |
void |
DatabasePreparedConnectionStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream,
long length) |
void |
DatabaseCallableConnectionStatement.setBlob(java.lang.String parameterName,
Blob x) |
void |
DatabaseCallableConnectionStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream) |
void |
DatabaseCallableConnectionStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream,
long length) |
void |
DatabasePreparedConnectionStatement.setBoolean(int parameterIndex,
boolean x) |
void |
DatabaseCallableConnectionStatement.setBoolean(java.lang.String parameterName,
boolean x) |
void |
DatabasePreparedConnectionStatement.setByte(int parameterIndex,
byte x) |
void |
DatabaseCallableConnectionStatement.setByte(java.lang.String parameterName,
byte x) |
void |
DatabasePreparedConnectionStatement.setBytes(int parameterIndex,
byte[] x) |
void |
DatabaseCallableConnectionStatement.setBytes(java.lang.String parameterName,
byte[] x) |
void |
DatabaseConnectionDelegate.setCatalog(java.lang.String catalog) |
void |
DatabasePreparedConnectionStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader) |
void |
DatabasePreparedConnectionStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length) |
void |
DatabasePreparedConnectionStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
long length) |
void |
DatabaseCallableConnectionStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader) |
void |
DatabaseCallableConnectionStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length) |
void |
DatabaseCallableConnectionStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
long length) |
void |
DatabasePreparedConnectionStatement.setClob(int parameterIndex,
Clob x) |
void |
DatabasePreparedConnectionStatement.setClob(int parameterIndex,
java.io.Reader reader) |
void |
DatabasePreparedConnectionStatement.setClob(int parameterIndex,
java.io.Reader reader,
long length) |
void |
DatabaseCallableConnectionStatement.setClob(java.lang.String parameterName,
Clob x) |
void |
DatabaseCallableConnectionStatement.setClob(java.lang.String parameterName,
java.io.Reader reader) |
void |
DatabaseCallableConnectionStatement.setClob(java.lang.String parameterName,
java.io.Reader reader,
long length) |
void |
DatabaseConnectionStatement.setCursorName(java.lang.String name) |
void |
DatabasePreparedConnectionStatement.setDate(int parameterIndex,
Date x) |
void |
DatabasePreparedConnectionStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal) |
void |
DatabaseCallableConnectionStatement.setDate(java.lang.String parameterName,
Date x) |
void |
DatabaseCallableConnectionStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal) |
void |
DatabasePreparedConnectionStatement.setDouble(int parameterIndex,
double x) |
void |
DatabaseCallableConnectionStatement.setDouble(java.lang.String parameterName,
double x) |
void |
DatabaseConnectionStatement.setEscapeProcessing(boolean enable) |
void |
DatabaseConnectionStatement.setFetchDirection(int direction) |
void |
DatabaseConnectionStatement.setFetchSize(int rows) |
void |
DatabasePreparedConnectionStatement.setFloat(int parameterIndex,
float x) |
void |
DatabaseCallableConnectionStatement.setFloat(java.lang.String parameterName,
float x) |
void |
DatabaseConnectionDelegate.setHoldability(int holdability) |
void |
DatabasePreparedConnectionStatement.setInt(int parameterIndex,
int x) |
void |
DatabaseCallableConnectionStatement.setInt(java.lang.String parameterName,
int x) |
void |
DatabasePreparedConnectionStatement.setLong(int parameterIndex,
long x) |
void |
DatabaseCallableConnectionStatement.setLong(java.lang.String parameterName,
long x) |
void |
DatabaseConnectionStatement.setMaxFieldSize(int max) |
void |
DatabaseConnectionStatement.setMaxRows(int max) |
void |
DatabasePreparedConnectionStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value) |
void |
DatabasePreparedConnectionStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value,
long length) |
void |
DatabaseCallableConnectionStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value) |
void |
DatabaseCallableConnectionStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value,
long length) |
void |
DatabasePreparedConnectionStatement.setNClob(int parameterIndex,
NClob value) |
void |
DatabasePreparedConnectionStatement.setNClob(int parameterIndex,
java.io.Reader reader) |
void |
DatabasePreparedConnectionStatement.setNClob(int parameterIndex,
java.io.Reader reader,
long length) |
void |
DatabaseCallableConnectionStatement.setNClob(java.lang.String parameterName,
NClob value) |
void |
DatabaseCallableConnectionStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader) |
void |
DatabaseCallableConnectionStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader,
long length) |
void |
DatabaseConnectionDelegate.setNetworkTimeout(java.util.concurrent.Executor executor,
int milliseconds) |
void |
DatabasePreparedConnectionStatement.setNString(int parameterIndex,
java.lang.String value) |
void |
DatabaseCallableConnectionStatement.setNString(java.lang.String parameterName,
java.lang.String value) |
void |
DatabasePreparedConnectionStatement.setNull(int parameterIndex,
int sqlType) |
void |
DatabasePreparedConnectionStatement.setNull(int parameterIndex,
int sqlType,
java.lang.String typeName) |
void |
DatabaseCallableConnectionStatement.setNull(java.lang.String parameterName,
int sqlType) |
void |
DatabaseCallableConnectionStatement.setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName) |
void |
DatabasePreparedConnectionStatement.setObject(int parameterIndex,
java.lang.Object x) |
void |
DatabasePreparedConnectionStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType) |
void |
DatabasePreparedConnectionStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scaleOrLength) |
void |
DatabaseCallableConnectionStatement.setObject(java.lang.String parameterName,
java.lang.Object x) |
void |
DatabaseCallableConnectionStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType) |
void |
DatabaseCallableConnectionStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scale) |
void |
DatabaseConnectionStatement.setPoolable(boolean poolable) |
void |
DatabaseConnectionStatement.setQueryTimeout(int seconds) |
void |
DatabaseConnectionDelegate.setReadOnly(boolean readOnly) |
void |
DatabasePreparedConnectionStatement.setRef(int parameterIndex,
Ref x) |
void |
DatabasePreparedConnectionStatement.setRowId(int parameterIndex,
RowId x) |
void |
DatabaseCallableConnectionStatement.setRowId(java.lang.String parameterName,
RowId x) |
Savepoint |
DatabaseConnectionDelegate.setSavepoint() |
Savepoint |
DatabaseConnectionDelegate.setSavepoint(java.lang.String name) |
void |
DatabaseConnectionDelegate.setSchema(java.lang.String schema) |
void |
DatabasePreparedConnectionStatement.setShort(int parameterIndex,
short x) |
void |
DatabaseCallableConnectionStatement.setShort(java.lang.String parameterName,
short x) |
void |
DatabasePreparedConnectionStatement.setSQLXML(int parameterIndex,
SQLXML xmlObject) |
void |
DatabaseCallableConnectionStatement.setSQLXML(java.lang.String parameterName,
SQLXML xmlObject) |
void |
DatabasePreparedConnectionStatement.setString(int parameterIndex,
java.lang.String x) |
void |
DatabaseCallableConnectionStatement.setString(java.lang.String parameterName,
java.lang.String x) |
void |
DatabasePreparedConnectionStatement.setTime(int parameterIndex,
Time x) |
void |
DatabasePreparedConnectionStatement.setTime(int parameterIndex,
Time x,
java.util.Calendar cal) |
void |
DatabaseCallableConnectionStatement.setTime(java.lang.String parameterName,
Time x) |
void |
DatabaseCallableConnectionStatement.setTime(java.lang.String parameterName,
Time x,
java.util.Calendar cal) |
void |
DatabasePreparedConnectionStatement.setTimestamp(int parameterIndex,
Timestamp x) |
void |
DatabasePreparedConnectionStatement.setTimestamp(int parameterIndex,
Timestamp x,
java.util.Calendar cal) |
void |
DatabaseCallableConnectionStatement.setTimestamp(java.lang.String parameterName,
Timestamp x) |
void |
DatabaseCallableConnectionStatement.setTimestamp(java.lang.String parameterName,
Timestamp x,
java.util.Calendar cal) |
void |
DatabaseConnectionDelegate.setTransactionIsolation(int level) |
void |
DatabaseConnectionDelegate.setTypeMap(java.util.Map map) |
void |
DatabasePreparedConnectionStatement.setUnicodeStream(int parameterIndex,
java.io.InputStream x,
int length) |
void |
DatabasePreparedConnectionStatement.setURL(int parameterIndex,
java.net.URL x) |
void |
DatabaseCallableConnectionStatement.setURL(java.lang.String parameterName,
java.net.URL val) |
java.lang.Object |
DatabaseConnectionDelegate.unwrap(java.lang.Class iface) |
java.lang.Object |
DatabaseConnectionStatement.unwrap(java.lang.Class iface) |
boolean |
DatabaseCallableConnectionStatement.wasNull() |
Modifier and Type | Method and Description |
---|---|
void |
RowEvent.init(ResultSet resultSet)
Initializes the SDO row stored in the event by the specified result set.
|
void |
RowArrayEvent.init(ResultSet resultSet)
Initializes a new Row Array Event based on
ResultSet meta data. |
void |
RowSetEvent.init(ResultSet resultSet)
Initializes the
SDORowSet stored in the event by the specified result set. |
void |
RowSetEvent.init(RowSet rowSet)
Initializes the
SDORowSet stored in the event by the specified RowSet. |
Constructor and Description |
---|
DatabaseSQLException(SQLException excp) |
Modifier and Type | Method and Description |
---|---|
boolean |
RowSet.absolute(int row)
Moves the cursor to the given row number in this
ResultSet
object. |
boolean |
RowSetProxy.absolute(int row) |
boolean |
RowSetClientResultSetImpl.absolute(int row) |
boolean |
RowSetClientIteratorImpl.absolute(int row) |
boolean |
RowSetClient.absolute(int row) |
void |
RowSet.addAll(RowSet other)
Adds all rows from the specified
RowSet at the end of this RowSet . |
void |
RowSet.addToRowSet(java.lang.Object[] rowValues)
Adds new row with provided values to the end of
RowSet . |
void |
RowSetInterface.addToRowSet(java.lang.Object[] rowValues)
Adds new row with provided values to the end of
RowSet . |
void |
RowSet.addToRowSet(Row row)
Adds provided row to the end of
RowSet . |
void |
RowSetInterface.addToRowSet(Row row)
Adds provided row to the end of
RowSet . |
void |
RowSet.afterLast()
Moves the cursor to the end of this
ResultSet object, just
after the last row. |
void |
RowSetProxy.afterLast() |
RowSet |
RowSet.asRowSet() |
RowSet |
RowSetProxy.asRowSet() |
RowSet |
RowSetInterface.asRowSet()
Returns serialized RowSet.
|
void |
RowSet.beforeFirst()
Moves the cursor to the front of this
ResultSet object, just
before the first row. |
void |
RowSetProxy.beforeFirst() |
void |
RowSet.cancelRowUpdates()
This method is not currently implemented.
|
com.streamscape.sdo.rowset.RowSetClobProxy |
RowSetClientResultSetImpl.castToRowSetClobProxy(long id) |
void |
RowSet.clearWarnings()
This method is not currently implemented.
|
static byte[] |
RowSet.convertStringToBytes(java.lang.String str,
SQLType type) |
java.lang.Object |
RowSetFactory.convertValue(java.lang.Object value,
ColumnDescriptor descriptor,
boolean isSingle) |
static RowMetaData |
RowSet.createMetaData(ResultSet resultSet) |
static RowMetaData |
RowSetFactory.createMetaData(ResultSet resultSet) |
RowSet |
RowSetFactory.createRowSet(ResultSet resultSet) |
Row |
RowSet.deleteFromRowSet(int index)
Deletes row with provided index from the
RowSet . |
Row |
RowSetInterface.deleteFromRowSet(int index)
Deletes row with provided index from the
RowSet . |
void |
RowSet.deleteRow()
This method is not currently implemented.
|
java.lang.Object[][] |
RowSetClientResultSetImpl.fetchRows(int offset,
int fetchSize) |
java.lang.Object[][] |
RowSetClientIteratorImpl.fetchRows(int offset,
int fetchSize) |
java.lang.Object[][] |
RowSetClient.fetchRows(int offset,
int fetchSize) |
boolean |
RowSet.first()
Moves the cursor to the first row in this
ResultSet object. |
boolean |
RowSetProxy.first() |
void |
ClobImpl.free() |
void |
ArrayImpl.free() |
void |
BlobImpl.free() |
java.lang.Object |
ArrayImpl.getArray() |
Array |
RowSet.getArray(int columnIndex) |
java.lang.Object |
ArrayImpl.getArray(long index,
int count) |
java.lang.Object |
ArrayImpl.getArray(long index,
int count,
java.util.Map map) |
java.lang.Object |
ArrayImpl.getArray(java.util.Map map) |
Array |
RowSet.getArray(java.lang.String columnName) |
java.io.InputStream |
ClobImpl.getAsciiStream() |
java.io.InputStream |
RowSet.getAsciiStream(int columnIndex) |
java.io.InputStream |
RowSet.getAsciiStream(java.lang.String columnName) |
int |
ArrayImpl.getBaseType() |
java.lang.String |
ArrayImpl.getBaseTypeName() |
java.math.BigDecimal |
RowSet.getBigDecimal(int columnIndex) |
java.math.BigDecimal |
RowSet.getBigDecimal(int columnIndex,
int scale)
Deprecated.
|
java.math.BigDecimal |
RowSet.getBigDecimal(java.lang.String columnName) |
java.math.BigDecimal |
RowSet.getBigDecimal(java.lang.String columnName,
int scale)
Deprecated.
|
java.util.List |
RowSet.getBigDecimalColumn(int columnIndex) |
java.util.List |
RowSet.getBigDecimalColumn(java.lang.String columnName) |
java.io.InputStream |
BlobImpl.getBinaryStream() |
java.io.InputStream |
RowSet.getBinaryStream(int columnIndex) |
java.io.InputStream |
BlobImpl.getBinaryStream(long pos,
long length) |
java.io.InputStream |
RowSet.getBinaryStream(java.lang.String columnName) |
Blob |
RowSet.getBlob(int columnIndex) |
Blob |
RowSet.getBlob(java.lang.String columnName) |
boolean |
RowSet.getBoolean(int columnIndex) |
boolean |
RowSet.getBoolean(java.lang.String columnName) |
java.util.List |
RowSet.getBooleanColumn(int columnIndex) |
java.util.List |
RowSet.getBooleanColumn(java.lang.String columnName) |
byte |
RowSet.getByte(int columnIndex) |
byte |
RowSet.getByte(java.lang.String columnName) |
java.util.List |
RowSet.getByteColumn(int columnIndex) |
java.util.List |
RowSet.getByteColumn(java.lang.String columnName) |
byte[] |
RowSet.getBytes(int columnIndex) |
byte[] |
BlobImpl.getBytes(long pos,
int length) |
byte[] |
RowSet.getBytes(java.lang.String columnName) |
java.io.Reader |
ClobImpl.getCharacterStream() |
java.io.Reader |
RowSet.getCharacterStream(int columnIndex) |
java.io.Reader |
ClobImpl.getCharacterStream(long pos,
long length) |
java.io.Reader |
RowSet.getCharacterStream(java.lang.String columnName) |
Clob |
RowSet.getClob(int columnIndex) |
Clob |
RowSet.getClob(java.lang.String columnName) |
int |
RowSet.getConcurrency()
This method is not currently implemented.
|
Row |
RowSet.getCurrentRow() |
Row |
RowSetProxy.getCurrentRow() |
Row |
RowSetInterface.getCurrentRow()
Returns current row.
|
java.lang.String |
RowSet.getCursorName()
This method is not currently implemented.
|
Date |
RowSet.getDate(int columnIndex) |
Date |
RowSet.getDate(int columnIndex,
java.util.Calendar cal) |
Date |
RowSet.getDate(java.lang.String columnName) |
Date |
RowSet.getDate(java.lang.String columnName,
java.util.Calendar cal) |
java.util.List |
RowSet.getDateColumn(int columnIndex) |
java.util.List |
RowSet.getDateColumn(java.lang.String columnName) |
double |
RowSet.getDouble(int columnIndex) |
double |
RowSet.getDouble(java.lang.String columnName) |
java.util.List |
RowSet.getDoubleColumn(int columnIndex) |
java.util.List |
RowSet.getDoubleColumn(java.lang.String columnName) |
int |
RowSet.getFetchDirection()
This method is not currently implemented.
|
int |
RowSet.getFetchSize() |
int |
RowSetProxy.getFetchSize() |
float |
RowSet.getFloat(int columnIndex) |
float |
RowSet.getFloat(java.lang.String columnName) |
java.util.List |
RowSet.getFloatColumn(int columnIndex) |
java.util.List |
RowSet.getFloatColumn(java.lang.String columnName) |
int |
RowSet.getHoldability()
This method is not currently implemented.
|
int |
RowSet.getInt(int columnIndex) |
int |
RowSet.getInt(java.lang.String columnName) |
java.util.List |
RowSet.getIntColumn(int columnIndex) |
java.util.List |
RowSet.getIntColumn(java.lang.String columnName) |
long |
RowSet.getLong(int columnIndex) |
long |
RowSet.getLong(java.lang.String columnName) |
java.util.List |
RowSet.getLongColumn(int columnIndex) |
java.util.List |
RowSet.getLongColumn(java.lang.String columnName) |
ResultSetMetaData |
RowSet.getMetaData()
This method is not currently implemented.
|
java.io.Reader |
RowSet.getNCharacterStream(int columnIndex)
This method is not currently implemented.
|
java.io.Reader |
RowSet.getNCharacterStream(java.lang.String columnLabel)
This method is not currently implemented.
|
NClob |
RowSet.getNClob(int columnIndex)
This method is not currently implemented.
|
NClob |
RowSet.getNClob(java.lang.String columnLabel)
This method is not currently implemented.
|
java.lang.String |
RowSet.getNString(int columnIndex)
This method is not currently implemented.
|
java.lang.String |
RowSet.getNString(java.lang.String columnLabel)
This method is not currently implemented.
|
java.lang.Object |
RowSet.getObject(int columnIndex)
Gets the value of the designated column in the current row of this
ResultSet object as an Object in the Java
programming language. |
java.lang.Object |
RowSet.getObject(int columnIndex,
java.lang.Class type) |
java.lang.Object |
RowSet.getObject(int i,
java.util.Map map)
This method is not currently implemented.
|
java.lang.Object |
RowSet.getObject(java.lang.String columnName)
Gets the value of the designated column in the current row of this
ResultSet object as an Object in the Java
programming language. |
java.lang.Object |
RowSet.getObject(java.lang.String columnLabel,
java.lang.Class type) |
java.lang.Object |
RowSet.getObject(java.lang.String colName,
java.util.Map map)
This method is not currently implemented.
|
java.util.List |
RowSet.getObjectColumn(int columnIndex) |
java.util.List |
RowSet.getObjectColumn(java.lang.String columnName) |
int |
RowSet.getPageSize() |
int |
RowSetProxy.getPageSize() |
int |
RowSetInterface.getPageSize()
Returns the page-size for the
RowSet object
Actually the same as getFetchSize . |
Ref |
RowSet.getRef(int i)
This method is not currently implemented.
|
Ref |
RowSet.getRef(java.lang.String colName)
This method is not currently implemented.
|
ResultSet |
ArrayImpl.getResultSet() |
ResultSet |
ArrayImpl.getResultSet(long index,
int count) |
ResultSet |
ArrayImpl.getResultSet(long index,
int count,
java.util.Map map) |
ResultSet |
ArrayImpl.getResultSet(java.util.Map map) |
int |
RowSet.getRow() |
int |
RowSetProxy.getRow() |
int |
RowSetClientResultSetImpl.getRow() |
int |
RowSetClientIteratorImpl.getRow() |
int |
RowSetClient.getRow() |
Row |
RowSet.getRowAt(int index)
Returns row by index.
|
Row |
RowSetProxy.getRowAt(int index) |
Row |
RowSetInterface.getRowAt(int index)
Returns row by index.
|
RowId |
RowSet.getRowId(int columnIndex)
This method is not currently implemented.
|
RowId |
RowSet.getRowId(java.lang.String columnLabel)
This method is not currently implemented.
|
short |
RowSet.getShort(int columnIndex) |
short |
RowSet.getShort(java.lang.String columnName) |
java.util.List |
RowSet.getShortColumn(int columnIndex) |
java.util.List |
RowSet.getShortColumn(java.lang.String columnName) |
SQLXML |
RowSet.getSQLXML(int columnIndex)
This method is not currently implemented.
|
SQLXML |
RowSet.getSQLXML(java.lang.String columnLabel)
This method is not currently implemented.
|
Statement |
RowSet.getStatement()
This method is not currently implemented.
|
java.lang.String |
RowSet.getString(int columnIndex) |
java.lang.String |
RowSet.getString(java.lang.String columnName) |
java.util.List |
RowSet.getStringColumn(int columnIndex) |
java.util.List |
RowSet.getStringColumn(java.lang.String columnName) |
java.lang.String |
ClobImpl.getSubString(long pos,
int length) |
Time |
RowSet.getTime(int columnIndex) |
Time |
RowSet.getTime(int columnIndex,
java.util.Calendar cal) |
Time |
RowSet.getTime(java.lang.String columnName) |
Time |
RowSet.getTime(java.lang.String columnName,
java.util.Calendar cal) |
java.util.List |
RowSet.getTimeColumn(int columnIndex) |
java.util.List |
RowSet.getTimeColumn(java.lang.String columnName) |
Timestamp |
RowSet.getTimestamp(int columnIndex) |
Timestamp |
RowSet.getTimestamp(int columnIndex,
java.util.Calendar cal) |
Timestamp |
RowSet.getTimestamp(java.lang.String columnName) |
Timestamp |
RowSet.getTimestamp(java.lang.String columnName,
java.util.Calendar cal) |
java.util.List |
RowSet.getTimestampColumn(int columnIndex) |
java.util.List |
RowSet.getTimestampColumn(java.lang.String columnName) |
int |
RowSet.getType()
This method is not currently implemented.
|
java.io.InputStream |
RowSet.getUnicodeStream(int columnIndex)
Deprecated.
|
java.io.InputStream |
RowSet.getUnicodeStream(java.lang.String columnName)
Deprecated.
|
java.net.URL |
RowSet.getURL(int columnIndex)
This method is not currently implemented.
|
java.net.URL |
RowSet.getURL(java.lang.String columnName)
This method is not currently implemented.
|
SQLWarning |
RowSet.getWarnings()
This method is not currently implemented.
|
void |
RowArray.init(ResultSet set)
Initializes a new Row Array based on
ResultSet meta data. |
void |
RowSet.insertIntoRowSet(int index,
java.lang.Object[] rowValues)
Inserts provided row values to the
RowSet at position index. |
void |
RowSetInterface.insertIntoRowSet(int index,
java.lang.Object[] rowValues)
Inserts provided row values to the
RowSet at position index. |
void |
RowSet.insertIntoRowSet(int index,
Row row)
Inserts provided row to the row set at position index.
|
void |
RowSetInterface.insertIntoRowSet(int index,
Row row)
Inserts provided row to the row set at position index.
|
void |
RowSet.insertRow()
This method is not currently implemented.
|
java.lang.Object |
RowSetClientResultSetImpl.invokeRowSetBlobMethod(long id,
java.lang.String methodName,
java.lang.Object[] params) |
boolean |
RowSet.isAfterLast()
Retrieves whether the cursor is after the last row in this
ResultSet object. |
boolean |
RowSetProxy.isAfterLast() |
boolean |
RowSetClientResultSetImpl.isAfterLast() |
boolean |
RowSetClientIteratorImpl.isAfterLast() |
boolean |
RowSetClient.isAfterLast() |
boolean |
RowSet.isLast()
Retrieves whether the cursor is on the last row of this
ResultSet object. |
boolean |
RowSetProxy.isLast() |
boolean |
RowSetClientResultSetImpl.isLast() |
boolean |
RowSetClientIteratorImpl.isLast() |
boolean |
RowSetClient.isLast() |
boolean |
RowSet.isWrapperFor(java.lang.Class iface) |
boolean |
RowSet.last()
Moves the cursor to the last row in this
ResultSet object. |
boolean |
RowSetProxy.last() |
boolean |
RowSetClientResultSetImpl.last() |
boolean |
RowSetClientIteratorImpl.last() |
boolean |
RowSetClient.last() |
long |
ClobImpl.length() |
long |
BlobImpl.length() |
void |
RowSet.moveToCurrentRow()
This method is not currently implemented.
|
void |
RowSet.moveToInsertRow()
This method is not currently implemented.
|
boolean |
RowSet.next()
Moves the cursor down one row from its current position.
|
boolean |
RowSetProxy.next() |
boolean |
RowSet.nextPage() |
boolean |
RowSetProxy.nextPage() |
boolean |
RowSetInterface.nextPage()
Increments the current page of the
RowSet . |
void |
RowSet.populateOutParameters(CallableStatement callable,
SQLQueryParameterList parameters) |
void |
RowSetInterface.populateOutParameters(CallableStatement callable,
SQLQueryParameterList parameters) |
long |
BlobImpl.position(Blob pattern,
long start) |
long |
BlobImpl.position(byte[] pattern,
long start) |
long |
ClobImpl.position(Clob searchstr,
long start) |
long |
ClobImpl.position(java.lang.String searchstr,
long start) |
boolean |
RowSet.previous()
Moves the cursor to the previous row in this
ResultSet
object. |
boolean |
RowSetProxy.previous() |
boolean |
RowSet.previousPage() |
boolean |
RowSetProxy.previousPage() |
boolean |
RowSetInterface.previousPage()
Decrements the current page of the
RowSet . |
void |
RowSet.protect(java.lang.String password)
Sets RowSet protected with password.
|
void |
RowSetInterface.protect(java.lang.String password)
Sets RowSet protected with password.
|
void |
RowSet.refreshRow()
This method is not currently implemented.
|
boolean |
RowSet.relative(int rowsCount)
Moves the cursor a relative number of rows, either positive or negative.
|
boolean |
RowSetProxy.relative(int rowsCount) |
boolean |
RowSet.rowDeleted()
This method is not currently implemented.
|
boolean |
RowSet.rowInserted()
This method is not currently implemented.
|
boolean |
RowSet.rowUpdated()
This method is not currently implemented.
|
RowSet |
RowSet.selectFromRowSet(int startRowIndex,
int endRowIndex)
Selects rows from start to end row indexes and adds them to new
RowSet object. |
RowSet |
RowSetInterface.selectFromRowSet(int startRowIndex,
int endRowIndex)
Selects rows from start to end row indexes and adds them to new
RowSet object. |
RowSet |
RowSet.selectFromRowSet(java.lang.String columnName,
java.lang.Object columnValue)
Selects rows from a
RowSet that satisfy the condition row[objectName]=columnValue . |
RowSet |
RowSetInterface.selectFromRowSet(java.lang.String columnName,
java.lang.Object columnValue)
Selects rows from a
RowSet that satisfy the condition row[objectName]=columnValue . |
java.io.OutputStream |
ClobImpl.setAsciiStream(long pos) |
java.io.OutputStream |
BlobImpl.setBinaryStream(long pos) |
int |
BlobImpl.setBytes(long pos,
byte[] bytes) |
int |
BlobImpl.setBytes(long pos,
byte[] bytes,
int offset,
int len) |
java.io.Writer |
ClobImpl.setCharacterStream(long pos) |
void |
RowSet.setFetchDirection(int direction)
This method is not currently implemented.
|
void |
RowSet.setFetchSize(int rows) |
void |
RowSetProxy.setFetchSize(int fetchSize) |
void |
RowSet.setPageSize(int pageSize) |
void |
RowSetProxy.setPageSize(int pageSize) |
void |
RowSetInterface.setPageSize(int pageSize)
Sets the
RowSet object's page-size. |
void |
RowSet.setReadOnly(boolean readOnly)
Sets read only flag.
|
void |
RowSetInterface.setReadOnly(boolean readOnly)
Sets read only flag.
|
int |
ClobImpl.setString(long pos,
java.lang.String str) |
int |
ClobImpl.setString(long pos,
java.lang.String str,
int offset,
int len) |
DataFrame |
RowSet.toDataFrame() |
void |
ClobImpl.truncate(long len) |
void |
BlobImpl.truncate(long len) |
void |
RowSet.unprotect(java.lang.String password)
Sets RowSet unprotected.
|
void |
RowSetInterface.unprotect(java.lang.String password)
Sets RowSet unprotected.
|
java.lang.Object |
RowSet.unwrap(java.lang.Class iface) |
void |
RowSet.updateArray(int columnIndex,
Array x) |
void |
RowSet.updateArray(java.lang.String columnName,
Array x) |
void |
RowSet.updateAsciiStream(int columnIndex,
java.io.InputStream x) |
void |
RowSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length) |
void |
RowSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
long length) |
void |
RowSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x) |
void |
RowSet.updateAsciiStream(java.lang.String columnName,
java.io.InputStream x,
int length) |
void |
RowSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
long length) |
void |
RowSet.updateBigDecimal(int columnIndex,
java.math.BigDecimal x) |
void |
RowSet.updateBigDecimal(java.lang.String columnName,
java.math.BigDecimal x) |
void |
RowSet.updateBinaryStream(int columnIndex,
java.io.InputStream x) |
void |
RowSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length) |
void |
RowSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
long length) |
void |
RowSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x) |
void |
RowSet.updateBinaryStream(java.lang.String columnName,
java.io.InputStream x,
int length) |
void |
RowSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
long length) |
void |
RowSet.updateBlob(int columnIndex,
Blob x) |
void |
RowSet.updateBlob(int columnIndex,
java.io.InputStream inputStream) |
void |
RowSet.updateBlob(int columnIndex,
java.io.InputStream inputStream,
long length) |
void |
RowSet.updateBlob(java.lang.String columnName,
Blob x) |
void |
RowSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream) |
void |
RowSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream,
long length) |
void |
RowSet.updateBoolean(int columnIndex,
boolean x) |
void |
RowSet.updateBoolean(java.lang.String columnName,
boolean x) |
void |
RowSet.updateByte(int columnIndex,
byte x) |
void |
RowSet.updateByte(java.lang.String columnName,
byte x) |
void |
RowSet.updateBytes(int columnIndex,
byte[] x) |
void |
RowSet.updateBytes(java.lang.String columnName,
byte[] x) |
void |
RowSet.updateCharacterStream(int columnIndex,
java.io.Reader x) |
void |
RowSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
int length) |
void |
RowSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
long length) |
void |
RowSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader x) |
void |
RowSet.updateCharacterStream(java.lang.String columnName,
java.io.Reader reader,
int length) |
void |
RowSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length) |
void |
RowSet.updateClob(int columnIndex,
Clob x) |
void |
RowSet.updateClob(int columnIndex,
java.io.Reader reader) |
void |
RowSet.updateClob(int columnIndex,
java.io.Reader reader,
long length) |
void |
RowSet.updateClob(java.lang.String columnName,
Clob x) |
void |
RowSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader) |
void |
RowSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader,
long length) |
void |
RowSet.updateDate(int columnIndex,
Date x) |
void |
RowSet.updateDate(java.lang.String columnName,
Date x) |
void |
RowSet.updateDouble(int columnIndex,
double x) |
void |
RowSet.updateDouble(java.lang.String columnName,
double x) |
void |
RowSet.updateFloat(int columnIndex,
float x) |
void |
RowSet.updateFloat(java.lang.String columnName,
float x) |
void |
RowSet.updateInt(int columnIndex,
int x) |
void |
RowSet.updateInt(java.lang.String columnName,
int x) |
void |
RowSet.updateLong(int columnIndex,
long x) |
void |
RowSet.updateLong(java.lang.String columnName,
long x) |
void |
RowSet.updateNCharacterStream(int columnIndex,
java.io.Reader x)
This method is not currently implemented.
|
void |
RowSet.updateNCharacterStream(int columnIndex,
java.io.Reader x,
long length)
This method is not currently implemented.
|
void |
RowSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader)
This method is not currently implemented.
|
void |
RowSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length)
This method is not currently implemented.
|
void |
RowSet.updateNClob(int columnIndex,
NClob nClob)
This method is not currently implemented.
|
void |
RowSet.updateNClob(int columnIndex,
java.io.Reader reader)
This method is not currently implemented.
|
void |
RowSet.updateNClob(int columnIndex,
java.io.Reader reader,
long length)
This method is not currently implemented.
|
void |
RowSet.updateNClob(java.lang.String columnLabel,
NClob nClob)
This method is not currently implemented.
|
void |
RowSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader)
This method is not currently implemented.
|
void |
RowSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader,
long length)
This method is not currently implemented.
|
void |
RowSet.updateNString(int columnIndex,
java.lang.String nString)
This method is not currently implemented.
|
void |
RowSet.updateNString(java.lang.String columnLabel,
java.lang.String nString)
This method is not currently implemented.
|
void |
RowSet.updateNull(int columnIndex) |
void |
RowSet.updateNull(java.lang.String columnName) |
void |
RowSet.updateObject(int columnIndex,
java.lang.Object x) |
void |
RowSet.updateObject(int columnIndex,
java.lang.Object x,
int scale) |
void |
RowSet.updateObject(java.lang.String columnName,
java.lang.Object x) |
void |
RowSet.updateObject(java.lang.String columnName,
java.lang.Object x,
int scale) |
void |
RowSet.updateRef(int columnIndex,
Ref x)
This method is not currently implemented.
|
void |
RowSet.updateRef(java.lang.String columnName,
Ref x)
This method is not currently implemented.
|
void |
RowSet.updateRow()
This method is not currently implemented.
|
void |
RowSet.updateRowId(int columnIndex,
RowId x)
This method is not currently implemented.
|
void |
RowSet.updateRowId(java.lang.String columnLabel,
RowId x)
This method is not currently implemented.
|
java.util.List |
RowSet.updateRowSet(int index,
java.lang.Object[] rowValues)
Updates row with provided values at provided position index.
|
java.util.List |
RowSetInterface.updateRowSet(int index,
java.lang.Object[] rowValues)
Updates row with provided values at provided position index.
|
java.util.List |
RowSet.updateRowSet(int index,
Row row)
Updates row with provided row at provided position index.
|
java.util.List |
RowSetInterface.updateRowSet(int index,
Row row)
Updates row with provided row at provided position index.
|
void |
RowSet.updateShort(int columnIndex,
short x) |
void |
RowSet.updateShort(java.lang.String columnName,
short x) |
void |
RowSet.updateSQLXML(int columnIndex,
SQLXML xmlObject)
This method is not currently implemented.
|
void |
RowSet.updateSQLXML(java.lang.String columnLabel,
SQLXML xmlObject)
This method is not currently implemented.
|
void |
RowSet.updateString(int columnIndex,
java.lang.String x) |
void |
RowSet.updateString(java.lang.String columnName,
java.lang.String x) |
void |
RowSet.updateTime(int columnIndex,
Time x) |
void |
RowSet.updateTime(java.lang.String columnName,
Time x) |
void |
RowSet.updateTimestamp(int columnIndex,
Timestamp x) |
void |
RowSet.updateTimestamp(java.lang.String columnName,
Timestamp x) |
boolean |
RowSet.wasNull() |
Constructor and Description |
---|
ArrayImpl(java.lang.Object[] array) |
BlobImpl(byte[] data)
Constructs a new BlobImpl instance wrapping the given octet sequence.
|
Row(ResultSet result)
Creates new row from the ResultSet.
|
RowSet(RowSet set)
Creates
RowSet out of the provided RowSet . |
RowSet(java.lang.String[] columnNames,
java.lang.Object[] values)
Creates
RowSet with the specified column names and values. |
Modifier and Type | Method and Description |
---|---|
static SQLColumnSet |
SQLQueryFactory.createColumnSet(ResultSet resultSet)
Creates
SQLColumnSet from provided ResultSet . |
Modifier and Type | Method and Description |
---|---|
Connection |
Store.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext securityContext) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext secContext) |
Connection |
Store.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext securityContext,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String dataspaceName,
SecurityContext secContext,
com.streamscape.ds.persist.BaseStoreProperties props) |
Connection |
Store.getJDBCConnection(java.lang.String username,
java.lang.String password) |
Connection |
DataspaceManager.getJDBCConnection(java.lang.String username,
java.lang.String password)
Returns JDBC Connection object to the embedded dataspace store.
|
Modifier and Type | Method and Description |
---|---|
static SLResponse |
LsDropBoxOperation.ls(java.lang.String path,
boolean recursive,
boolean onlyManaged,
boolean onlyUnmanaged,
FileSystem fileSystem) |
Modifier and Type | Method and Description |
---|---|
Connection |
ServiceContext.getJDBCConnection(java.lang.String dataspaceName)
Returns a JDBC Connection object to the embedded dataspace store.
|
Modifier and Type | Class and Description |
---|---|
class |
BatchUpdateException
The subclass of
SQLException thrown when an error
occurs during a batch update operation. |
class |
DataTruncation
An exception thrown as a
DataTruncation exception
(on writes) or reported as a
DataTruncation warning (on reads)
when a data values is unexpectedly truncated for reasons other than its having
execeeded MaxFieldSize . |
class |
SQLClientInfoException
The subclass of
SQLException is thrown when one or more client info properties
could not be set on a Connection . |
class |
SQLDataException
The subclass of
SQLException thrown when the SQLState class value is '22'. |
class |
SQLFeatureNotSupportedException
The subclass of
SQLException thrown when the SQLState class value is '0A'
( the value is 'zero' A). |
class |
SQLIntegrityConstraintViolationException
The subclass of
SQLException thrown when the SQLState class value is '23'. |
class |
SQLInvalidAuthorizationSpecException
The subclass of
SQLException thrown when the SQLState class value is '28'. |
class |
SQLNonTransientConnectionException
The subclass of
SQLException thrown for the SQLState
class value '08', representing
that the connection operation that failed will not succeed when
the operation is retried without the cause of the failure being corrected. |
class |
SQLNonTransientException
The subclass of
SQLException thrown when an instance where a retry
of the same operation would fail unless the cause of the SQLException
is corrected. |
class |
SQLRecoverableException
The subclass of
SQLException thrown in situations where a
previously failed operation might be able to succeed if the application performs
some recovery steps and retries the entire transaction or in the case of a
distributed transaction, the transaction branch. |
class |
SQLSyntaxErrorException
The subclass of
SQLException thrown when the SQLState class value is '42'. |
class |
SQLTimeoutException
The subclass of
SQLException thrown when the timeout specified by Statement
has expired. |
class |
SQLTransactionRollbackException
The subclass of
SQLException thrown when the SQLState class value is '40'. |
class |
SQLTransientConnectionException
The subclass of
SQLException for the SQLState class
value '08', representing
that the connection operation that failed might be able to succeed when
the operation is retried without any application-level changes. |
class |
SQLTransientException
The subclass of
SQLException is thrown in situations where a
previoulsy failed operation might be able to succeed when the operation is
retried without any intervention by application-level functionality. |
class |
SQLWarning
An exception that provides information on database access
warnings.
|
Modifier and Type | Method and Description |
---|---|
SQLException |
SQLException.getNextException()
Retrieves the exception chained to this
SQLException object by setNextException(SQLException ex). |
Modifier and Type | Method and Description |
---|---|
void |
SQLException.setNextException(SQLException ex)
Adds an
SQLException object to the end of the chain. |
Modifier and Type | Method and Description |
---|---|
boolean |
ResultSet.absolute(int row)
Moves the cursor to the given row number in
this
ResultSet object. |
boolean |
Driver.acceptsURL(java.lang.String url)
Retrieves whether the driver thinks that it can open a connection
to the given URL.
|
void |
PreparedStatement.addBatch()
Adds a set of parameters to this
PreparedStatement
object's batch of commands. |
void |
Statement.addBatch(java.lang.String sql)
Adds the given SQL command to the current list of commmands for this
Statement object. |
void |
ResultSet.afterLast()
Moves the cursor to the end of
this
ResultSet object, just after the
last row. |
boolean |
DatabaseMetaData.allProceduresAreCallable()
Retrieves whether the current user can call all the procedures
returned by the method
getProcedures . |
boolean |
DatabaseMetaData.allTablesAreSelectable()
Retrieves whether the current user can use all the tables returned
by the method
getTables in a SELECT
statement. |
boolean |
DatabaseMetaData.autoCommitFailureClosesAllResultSets()
Retrieves whether a
SQLException while autoCommit is true inidcates
that all open ResultSets are closed, even ones that are holdable. |
void |
ResultSet.beforeFirst()
Moves the cursor to the front of
this
ResultSet object, just before the
first row. |
void |
Statement.cancel()
Cancels this
Statement object if both the DBMS and
driver support aborting an SQL statement. |
void |
ResultSet.cancelRowUpdates()
Cancels the updates made to the current row in this
ResultSet object. |
void |
Statement.clearBatch()
Empties this
Statement object's current list of
SQL commands. |
void |
PreparedStatement.clearParameters()
Clears the current parameter values immediately.
|
void |
Statement.clearWarnings()
Clears all the warnings reported on this
Statement
object. |
void |
ResultSet.clearWarnings()
Clears all warnings reported on this
ResultSet object. |
void |
Connection.clearWarnings()
Clears all warnings reported for this
Connection object. |
void |
Statement.close()
Releases this
Statement object's database
and JDBC resources immediately instead of waiting for
this to happen when it is automatically closed. |
void |
ResultSet.close()
Releases this
ResultSet object's database and
JDBC resources immediately instead of waiting for
this to happen when it is automatically closed. |
void |
Connection.close()
Releases this
Connection object's database and JDBC resources
immediately instead of waiting for them to be automatically released. |
void |
Connection.commit()
Makes all changes made since the previous
commit/rollback permanent and releases any database locks
currently held by this
Connection object. |
Connection |
Driver.connect(java.lang.String url,
java.util.Properties info)
Attempts to make a database connection to the given URL.
|
Array |
Connection.createArrayOf(java.lang.String typeName,
java.lang.Object[] elements)
Factory method for creating Array objects.
|
Blob |
Connection.createBlob()
Constructs an object that implements the
Blob interface. |
Clob |
Connection.createClob()
Constructs an object that implements the
Clob interface. |
NClob |
Connection.createNClob()
Constructs an object that implements the
NClob interface. |
SQLXML |
Connection.createSQLXML()
Constructs an object that implements the
SQLXML interface. |
Statement |
Connection.createStatement()
Creates a
Statement object for sending
SQL statements to the database. |
Statement |
Connection.createStatement(int resultSetType,
int resultSetConcurrency)
Creates a
Statement object that will generate
ResultSet objects with the given type and concurrency. |
Statement |
Connection.createStatement(int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
Statement object that will generate
ResultSet objects with the given type, concurrency,
and holdability. |
Struct |
Connection.createStruct(java.lang.String typeName,
java.lang.Object[] attributes)
Factory method for creating Struct objects.
|
boolean |
DatabaseMetaData.dataDefinitionCausesTransactionCommit()
Retrieves whether a data definition statement within a transaction forces
the transaction to commit.
|
boolean |
DatabaseMetaData.dataDefinitionIgnoredInTransactions()
Retrieves whether this database ignores a data definition statement
within a transaction.
|
void |
ResultSet.deleteRow()
Deletes the current row from this
ResultSet object
and from the underlying database. |
boolean |
DatabaseMetaData.deletesAreDetected(int type)
Retrieves whether or not a visible row delete can be detected by
calling the method
ResultSet.rowDeleted . |
static void |
DriverManager.deregisterDriver(Driver driver)
Drops a driver from the
DriverManager 's list. |
boolean |
DatabaseMetaData.doesMaxRowSizeIncludeBlobs()
Retrieves whether the return value for the method
getMaxRowSize includes the SQL data types
LONGVARCHAR and LONGVARBINARY . |
boolean |
PreparedStatement.execute()
Executes the SQL statement in this
PreparedStatement object,
which may be any kind of SQL statement. |
boolean |
Statement.execute(java.lang.String sql)
Executes the given SQL statement, which may return multiple results.
|
boolean |
Statement.execute(java.lang.String sql,
int autoGeneratedKeys)
Executes the given SQL statement, which may return multiple results,
and signals the driver that any
auto-generated keys should be made available
for retrieval.
|
boolean |
Statement.execute(java.lang.String sql,
int[] columnIndexes)
Executes the given SQL statement, which may return multiple results,
and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
boolean |
Statement.execute(java.lang.String sql,
java.lang.String[] columnNames)
Executes the given SQL statement, which may return multiple results,
and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int[] |
Statement.executeBatch()
Submits a batch of commands to the database for execution and
if all commands execute successfully, returns an array of update counts.
|
ResultSet |
PreparedStatement.executeQuery()
Executes the SQL query in this
PreparedStatement object
and returns the ResultSet object generated by the query. |
ResultSet |
Statement.executeQuery(java.lang.String sql)
Executes the given SQL statement, which returns a single
ResultSet object. |
int |
PreparedStatement.executeUpdate()
Executes the SQL statement in this
PreparedStatement object,
which must be an SQL Data Manipulation Language (DML) statement, such as INSERT , UPDATE or
DELETE ; or an SQL statement that returns nothing,
such as a DDL statement. |
int |
Statement.executeUpdate(java.lang.String sql)
Executes the given SQL statement, which may be an
INSERT ,
UPDATE , or DELETE statement or an
SQL statement that returns nothing, such as an SQL DDL statement. |
int |
Statement.executeUpdate(java.lang.String sql,
int autoGeneratedKeys)
Executes the given SQL statement and signals the driver with the
given flag about whether the
auto-generated keys produced by this
Statement object
should be made available for retrieval. |
int |
Statement.executeUpdate(java.lang.String sql,
int[] columnIndexes)
Executes the given SQL statement and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int |
Statement.executeUpdate(java.lang.String sql,
java.lang.String[] columnNames)
Executes the given SQL statement and signals the driver that the
auto-generated keys indicated in the given array should be made available
for retrieval.
|
int |
ResultSet.findColumn(java.lang.String columnLabel)
Maps the given
ResultSet column label to its
ResultSet column index. |
boolean |
ResultSet.first()
Moves the cursor to the first row in
this
ResultSet object. |
void |
SQLXML.free()
This method closes this object and releases the resources that it held.
|
void |
Clob.free()
This method frees the
Clob object and releases the resources the resources
that it holds. |
void |
Blob.free()
This method frees the
Blob object and releases the resources that
it holds. |
void |
Array.free()
This method frees the
Array object and releases the resources that
it holds. |
java.lang.Object |
Array.getArray()
Retrieves the contents of the SQL
ARRAY value designated
by this
Array object in the form of an array in the Java
programming language. |
Array |
ResultSet.getArray(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Array object
in the Java programming language. |
Array |
CallableStatement.getArray(int parameterIndex)
Retrieves the value of the designated JDBC
ARRAY parameter as an
Array object in the Java programming language. |
java.lang.Object |
Array.getArray(long index,
int count)
Retrieves a slice of the SQL
ARRAY
value designated by this Array object, beginning with the
specified index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
Array.getArray(long index,
int count,
java.util.Map map)
Retreives a slice of the SQL
ARRAY value
designated by this Array object, beginning with the specified
index and containing up to count
successive elements of the SQL array. |
java.lang.Object |
Array.getArray(java.util.Map map)
Retrieves the contents of the SQL
ARRAY value designated by this
Array object. |
Array |
ResultSet.getArray(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Array object
in the Java programming language. |
Array |
CallableStatement.getArray(java.lang.String parameterName)
Retrieves the value of a JDBC
ARRAY parameter as an
Array object in the Java programming language. |
java.io.InputStream |
Clob.getAsciiStream()
Retrieves the
CLOB value designated by this Clob
object as an ascii stream. |
java.io.InputStream |
ResultSet.getAsciiStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a stream of ASCII characters. |
java.io.InputStream |
ResultSet.getAsciiStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of
ASCII characters. |
java.lang.Object[] |
Struct.getAttributes()
Produces the ordered values of the attributes of the SQL
structured type that this
Struct object represents. |
java.lang.Object[] |
Struct.getAttributes(java.util.Map map)
Produces the ordered values of the attributes of the SQL
structured type that this
Struct object represents. |
ResultSet |
DatabaseMetaData.getAttributes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
java.lang.String attributeNamePattern)
Retrieves a description of the given attribute of the given type
for a user-defined type (UDT) that is available in the given schema
and catalog.
|
boolean |
Connection.getAutoCommit()
Retrieves the current auto-commit mode for this
Connection
object. |
int |
Array.getBaseType()
Retrieves the JDBC type of the elements in the array designated
by this
Array object. |
java.lang.String |
Ref.getBaseTypeName()
Retrieves the fully-qualified SQL name of the SQL structured type that
this
Ref object references. |
java.lang.String |
Array.getBaseTypeName()
Retrieves the SQL type name of the elements in
the array designated by this
Array object. |
ResultSet |
DatabaseMetaData.getBestRowIdentifier(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
int scope,
boolean nullable)
Retrieves a description of a table's optimal set of columns that
uniquely identifies a row.
|
java.math.BigDecimal |
ResultSet.getBigDecimal(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.math.BigDecimal with full precision. |
java.math.BigDecimal |
CallableStatement.getBigDecimal(int parameterIndex)
Retrieves the value of the designated JDBC
NUMERIC parameter as a
java.math.BigDecimal object with as many digits to the
right of the decimal point as the value contains. |
java.math.BigDecimal |
ResultSet.getBigDecimal(int columnIndex,
int scale)
Deprecated.
|
java.math.BigDecimal |
CallableStatement.getBigDecimal(int parameterIndex,
int scale)
Deprecated.
use
getBigDecimal(int parameterIndex)
or getBigDecimal(String parameterName) |
java.math.BigDecimal |
ResultSet.getBigDecimal(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.math.BigDecimal with full precision. |
java.math.BigDecimal |
CallableStatement.getBigDecimal(java.lang.String parameterName)
Retrieves the value of a JDBC
NUMERIC parameter as a
java.math.BigDecimal object with as many digits to the
right of the decimal point as the value contains. |
java.math.BigDecimal |
ResultSet.getBigDecimal(java.lang.String columnLabel,
int scale)
Deprecated.
|
java.io.InputStream |
SQLXML.getBinaryStream()
Retrieves the XML value designated by this SQLXML instance as a stream.
|
java.io.InputStream |
Blob.getBinaryStream()
Retrieves the
BLOB value designated by this
Blob instance as a stream. |
java.io.InputStream |
ResultSet.getBinaryStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of
uninterpreted bytes. |
java.io.InputStream |
Blob.getBinaryStream(long pos,
long length)
Returns an
InputStream object that contains a partial Blob value,
starting with the byte specified by pos, which is length bytes in length. |
java.io.InputStream |
ResultSet.getBinaryStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a stream of uninterpreted
byte s. |
Blob |
ResultSet.getBlob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Blob object
in the Java programming language. |
Blob |
CallableStatement.getBlob(int parameterIndex)
Retrieves the value of the designated JDBC
BLOB parameter as a
Blob object in the Java programming language. |
Blob |
ResultSet.getBlob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Blob object
in the Java programming language. |
Blob |
CallableStatement.getBlob(java.lang.String parameterName)
Retrieves the value of a JDBC
BLOB parameter as a
Blob object in the Java programming language. |
boolean |
ResultSet.getBoolean(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a boolean in the Java programming language. |
boolean |
CallableStatement.getBoolean(int parameterIndex)
Retrieves the value of the designated JDBC
BIT
or BOOLEAN parameter as a
boolean in the Java programming language. |
boolean |
ResultSet.getBoolean(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a boolean in the Java programming language. |
boolean |
CallableStatement.getBoolean(java.lang.String parameterName)
Retrieves the value of a JDBC
BIT or BOOLEAN
parameter as a
boolean in the Java programming language. |
byte |
ResultSet.getByte(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte in the Java programming language. |
byte |
CallableStatement.getByte(int parameterIndex)
Retrieves the value of the designated JDBC
TINYINT parameter
as a byte in the Java programming language. |
byte |
ResultSet.getByte(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte in the Java programming language. |
byte |
CallableStatement.getByte(java.lang.String parameterName)
Retrieves the value of a JDBC
TINYINT parameter as a byte
in the Java programming language. |
byte[] |
ResultSet.getBytes(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte array in the Java programming language. |
byte[] |
CallableStatement.getBytes(int parameterIndex)
Retrieves the value of the designated JDBC
BINARY or
VARBINARY parameter as an array of byte
values in the Java programming language. |
byte[] |
Blob.getBytes(long pos,
int length)
Retrieves all or part of the
BLOB
value that this Blob object represents, as an array of
bytes. |
byte[] |
ResultSet.getBytes(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a byte array in the Java programming language. |
byte[] |
CallableStatement.getBytes(java.lang.String parameterName)
Retrieves the value of a JDBC
BINARY or VARBINARY
parameter as an array of byte values in the Java
programming language. |
java.lang.String |
Connection.getCatalog()
Retrieves this
Connection object's current catalog name. |
java.lang.String |
ResultSetMetaData.getCatalogName(int column)
Gets the designated column's table's catalog name.
|
ResultSet |
DatabaseMetaData.getCatalogs()
Retrieves the catalog names available in this database.
|
java.lang.String |
DatabaseMetaData.getCatalogSeparator()
Retrieves the
String that this database uses as the
separator between a catalog and table name. |
java.lang.String |
DatabaseMetaData.getCatalogTerm()
Retrieves the database vendor's preferred term for "catalog".
|
java.io.Reader |
SQLXML.getCharacterStream()
Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object.
|
java.io.Reader |
Clob.getCharacterStream()
Retrieves the
CLOB value designated by this Clob
object as a java.io.Reader object (or as a stream of
characters). |
java.io.Reader |
ResultSet.getCharacterStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
CallableStatement.getCharacterStream(int parameterIndex)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.io.Reader |
Clob.getCharacterStream(long pos,
long length)
Returns a
Reader object that contains a partial Clob value, starting
with the character specified by pos, which is length characters in length. |
java.io.Reader |
ResultSet.getCharacterStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
CallableStatement.getCharacterStream(java.lang.String parameterName)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.util.Properties |
Connection.getClientInfo()
Returns a list containing the name and current value of each client info
property supported by the driver.
|
java.lang.String |
Connection.getClientInfo(java.lang.String name)
Returns the value of the client info property specified by name.
|
ResultSet |
DatabaseMetaData.getClientInfoProperties()
Retrieves a list of the client info properties
that the driver supports.
|
Clob |
ResultSet.getClob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Clob object
in the Java programming language. |
Clob |
CallableStatement.getClob(int parameterIndex)
Retrieves the value of the designated JDBC
CLOB parameter as a
java.sql.Clob object in the Java programming language. |
Clob |
ResultSet.getClob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Clob object
in the Java programming language. |
Clob |
CallableStatement.getClob(java.lang.String parameterName)
Retrieves the value of a JDBC
CLOB parameter as a
java.sql.Clob object in the Java programming language. |
java.lang.String |
ResultSetMetaData.getColumnClassName(int column)
Returns the fully-qualified name of the Java class whose instances
are manufactured if the method
ResultSet.getObject
is called to retrieve a value
from the column. |
int |
ResultSetMetaData.getColumnCount()
Returns the number of columns in this
ResultSet object. |
int |
ResultSetMetaData.getColumnDisplaySize(int column)
Indicates the designated column's normal maximum width in characters.
|
java.lang.String |
ResultSetMetaData.getColumnLabel(int column)
Gets the designated column's suggested title for use in printouts and
displays.
|
java.lang.String |
ResultSetMetaData.getColumnName(int column)
Get the designated column's name.
|
ResultSet |
DatabaseMetaData.getColumnPrivileges(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
java.lang.String columnNamePattern)
Retrieves a description of the access rights for a table's columns.
|
ResultSet |
DatabaseMetaData.getColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of table columns available in
the specified catalog.
|
int |
ResultSetMetaData.getColumnType(int column)
Retrieves the designated column's SQL type.
|
java.lang.String |
ResultSetMetaData.getColumnTypeName(int column)
Retrieves the designated column's database-specific type name.
|
int |
ResultSet.getConcurrency()
Retrieves the concurrency mode of this
ResultSet object. |
Connection |
Statement.getConnection()
Retrieves the
Connection object
that produced this Statement object. |
Connection |
DatabaseMetaData.getConnection()
Retrieves the connection that produced this metadata object.
|
static Connection |
DriverManager.getConnection(java.lang.String url)
Attempts to establish a connection to the given database URL.
|
static Connection |
DriverManager.getConnection(java.lang.String url,
java.util.Properties info)
Attempts to establish a connection to the given database URL.
|
static Connection |
DriverManager.getConnection(java.lang.String url,
java.lang.String user,
java.lang.String password)
Attempts to establish a connection to the given database URL.
|
ResultSet |
DatabaseMetaData.getCrossReference(java.lang.String parentCatalog,
java.lang.String parentSchema,
java.lang.String parentTable,
java.lang.String foreignCatalog,
java.lang.String foreignSchema,
java.lang.String foreignTable)
Retrieves a description of the foreign key columns in the given foreign key
table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table).
|
java.lang.String |
ResultSet.getCursorName()
Retrieves the name of the SQL cursor used by this
ResultSet
object. |
int |
DatabaseMetaData.getDatabaseMajorVersion()
Retrieves the major version number of the underlying database.
|
int |
DatabaseMetaData.getDatabaseMinorVersion()
Retrieves the minor version number of the underlying database.
|
java.lang.String |
DatabaseMetaData.getDatabaseProductName()
Retrieves the name of this database product.
|
java.lang.String |
DatabaseMetaData.getDatabaseProductVersion()
Retrieves the version number of this database product.
|
Date |
ResultSet.getDate(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
CallableStatement.getDate(int parameterIndex)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object. |
Date |
ResultSet.getDate(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
CallableStatement.getDate(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
Date |
ResultSet.getDate(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Date object in the Java programming language. |
Date |
CallableStatement.getDate(java.lang.String parameterName)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object. |
Date |
ResultSet.getDate(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Date object
in the Java programming language. |
Date |
CallableStatement.getDate(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
DATE parameter as a
java.sql.Date object, using
the given Calendar object
to construct the date. |
int |
DatabaseMetaData.getDefaultTransactionIsolation()
Retrieves this database's default transaction isolation level.
|
double |
ResultSet.getDouble(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a double in the Java programming language. |
double |
CallableStatement.getDouble(int parameterIndex)
Retrieves the value of the designated JDBC
DOUBLE parameter as a double
in the Java programming language. |
double |
ResultSet.getDouble(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a double in the Java programming language. |
double |
CallableStatement.getDouble(java.lang.String parameterName)
Retrieves the value of a JDBC
DOUBLE parameter as a double
in the Java programming language. |
static Driver |
DriverManager.getDriver(java.lang.String url)
Attempts to locate a driver that understands the given URL.
|
java.lang.String |
DatabaseMetaData.getDriverName()
Retrieves the name of this JDBC driver.
|
java.lang.String |
DatabaseMetaData.getDriverVersion()
Retrieves the version number of this JDBC driver as a
String . |
ResultSet |
DatabaseMetaData.getExportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the foreign key columns that reference the
given table's primary key columns (the foreign keys exported by a
table).
|
java.lang.String |
DatabaseMetaData.getExtraNameCharacters()
Retrieves all the "extra" characters that can be used in unquoted
identifier names (those beyond a-z, A-Z, 0-9 and _).
|
int |
Statement.getFetchDirection()
Retrieves the direction for fetching rows from
database tables that is the default for result sets
generated from this
Statement object. |
int |
ResultSet.getFetchDirection()
Retrieves the fetch direction for this
ResultSet object. |
int |
Statement.getFetchSize()
Retrieves the number of result set rows that is the default
fetch size for
ResultSet objects
generated from this Statement object. |
int |
ResultSet.getFetchSize()
Retrieves the fetch size for this
ResultSet object. |
float |
ResultSet.getFloat(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a float in the Java programming language. |
float |
CallableStatement.getFloat(int parameterIndex)
Retrieves the value of the designated JDBC
FLOAT parameter
as a float in the Java programming language. |
float |
ResultSet.getFloat(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a float in the Java programming language. |
float |
CallableStatement.getFloat(java.lang.String parameterName)
Retrieves the value of a JDBC
FLOAT parameter as a float
in the Java programming language. |
ResultSet |
DatabaseMetaData.getFunctionColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's system or user
function parameters and return type.
|
ResultSet |
DatabaseMetaData.getFunctions(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern)
Retrieves a description of the system and user functions available
in the given catalog.
|
ResultSet |
Statement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
int |
ResultSet.getHoldability()
Retrieves the holdability of this
ResultSet object |
int |
Connection.getHoldability()
Retrieves the current holdability of
ResultSet objects
created using this Connection object. |
java.lang.String |
DatabaseMetaData.getIdentifierQuoteString()
Retrieves the string used to quote SQL identifiers.
|
ResultSet |
DatabaseMetaData.getImportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the primary key columns that are
referenced by the given table's foreign key columns (the primary keys
imported by a table).
|
ResultSet |
DatabaseMetaData.getIndexInfo(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
boolean unique,
boolean approximate)
Retrieves a description of the given table's indices and statistics.
|
int |
ResultSet.getInt(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
an int in the Java programming language. |
int |
CallableStatement.getInt(int parameterIndex)
Retrieves the value of the designated JDBC
INTEGER parameter
as an int in the Java programming language. |
int |
ResultSet.getInt(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
an int in the Java programming language. |
int |
CallableStatement.getInt(java.lang.String parameterName)
Retrieves the value of a JDBC
INTEGER parameter as an int
in the Java programming language. |
int |
DatabaseMetaData.getJDBCMajorVersion()
Retrieves the major JDBC version number for this
driver.
|
int |
DatabaseMetaData.getJDBCMinorVersion()
Retrieves the minor JDBC version number for this
driver.
|
long |
ResultSet.getLong(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a long in the Java programming language. |
long |
CallableStatement.getLong(int parameterIndex)
Retrieves the value of the designated JDBC
BIGINT parameter
as a long in the Java programming language. |
long |
ResultSet.getLong(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a long in the Java programming language. |
long |
CallableStatement.getLong(java.lang.String parameterName)
Retrieves the value of a JDBC
BIGINT parameter as a long
in the Java programming language. |
int |
DatabaseMetaData.getMaxBinaryLiteralLength()
Retrieves the maximum number of hex characters this database allows in an
inline binary literal.
|
int |
DatabaseMetaData.getMaxCatalogNameLength()
Retrieves the maximum number of characters that this database allows in a
catalog name.
|
int |
DatabaseMetaData.getMaxCharLiteralLength()
Retrieves the maximum number of characters this database allows
for a character literal.
|
int |
DatabaseMetaData.getMaxColumnNameLength()
Retrieves the maximum number of characters this database allows
for a column name.
|
int |
DatabaseMetaData.getMaxColumnsInGroupBy()
Retrieves the maximum number of columns this database allows in a
GROUP BY clause. |
int |
DatabaseMetaData.getMaxColumnsInIndex()
Retrieves the maximum number of columns this database allows in an index.
|
int |
DatabaseMetaData.getMaxColumnsInOrderBy()
Retrieves the maximum number of columns this database allows in an
ORDER BY clause. |
int |
DatabaseMetaData.getMaxColumnsInSelect()
Retrieves the maximum number of columns this database allows in a
SELECT list. |
int |
DatabaseMetaData.getMaxColumnsInTable()
Retrieves the maximum number of columns this database allows in a table.
|
int |
DatabaseMetaData.getMaxConnections()
Retrieves the maximum number of concurrent connections to this
database that are possible.
|
int |
DatabaseMetaData.getMaxCursorNameLength()
Retrieves the maximum number of characters that this database allows in a
cursor name.
|
int |
Statement.getMaxFieldSize()
Retrieves the maximum number of bytes that can be
returned for character and binary column values in a
ResultSet
object produced by this Statement object. |
int |
DatabaseMetaData.getMaxIndexLength()
Retrieves the maximum number of bytes this database allows for an
index, including all of the parts of the index.
|
int |
DatabaseMetaData.getMaxProcedureNameLength()
Retrieves the maximum number of characters that this database allows in a
procedure name.
|
int |
Statement.getMaxRows()
Retrieves the maximum number of rows that a
ResultSet object produced by this
Statement object can contain. |
int |
DatabaseMetaData.getMaxRowSize()
Retrieves the maximum number of bytes this database allows in
a single row.
|
int |
DatabaseMetaData.getMaxSchemaNameLength()
Retrieves the maximum number of characters that this database allows in a
schema name.
|
int |
DatabaseMetaData.getMaxStatementLength()
Retrieves the maximum number of characters this database allows in
an SQL statement.
|
int |
DatabaseMetaData.getMaxStatements()
Retrieves the maximum number of active statements to this database
that can be open at the same time.
|
int |
DatabaseMetaData.getMaxTableNameLength()
Retrieves the maximum number of characters this database allows in
a table name.
|
int |
DatabaseMetaData.getMaxTablesInSelect()
Retrieves the maximum number of tables this database allows in a
SELECT statement. |
int |
DatabaseMetaData.getMaxUserNameLength()
Retrieves the maximum number of characters this database allows in
a user name.
|
ResultSetMetaData |
ResultSet.getMetaData()
Retrieves the number, types and properties of
this
ResultSet object's columns. |
ResultSetMetaData |
PreparedStatement.getMetaData()
Retrieves a
ResultSetMetaData object that contains
information about the columns of the ResultSet object
that will be returned when this PreparedStatement object
is executed. |
DatabaseMetaData |
Connection.getMetaData()
Retrieves a
DatabaseMetaData object that contains
metadata about the database to which this
Connection object represents a connection. |
boolean |
Statement.getMoreResults()
Moves to this
Statement object's next result, returns
true if it is a ResultSet object, and
implicitly closes any current ResultSet
object(s) obtained with the method getResultSet . |
boolean |
Statement.getMoreResults(int current)
Moves to this
Statement object's next result, deals with
any current ResultSet object(s) according to the instructions
specified by the given flag, and returns
true if the next result is a ResultSet object. |
java.io.Reader |
ResultSet.getNCharacterStream(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
CallableStatement.getNCharacterStream(int parameterIndex)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
java.io.Reader |
ResultSet.getNCharacterStream(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a
java.io.Reader object. |
java.io.Reader |
CallableStatement.getNCharacterStream(java.lang.String parameterName)
Retrieves the value of the designated parameter as a
java.io.Reader object in the Java programming language. |
NClob |
ResultSet.getNClob(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a NClob object
in the Java programming language. |
NClob |
CallableStatement.getNClob(int parameterIndex)
Retrieves the value of the designated JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language. |
NClob |
ResultSet.getNClob(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a NClob object
in the Java programming language. |
NClob |
CallableStatement.getNClob(java.lang.String parameterName)
Retrieves the value of a JDBC
NCLOB parameter as a
java.sql.NClob object in the Java programming language. |
java.lang.String |
ResultSet.getNString(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
CallableStatement.getNString(int parameterIndex)
Retrieves the value of the designated
NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language. |
java.lang.String |
ResultSet.getNString(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
CallableStatement.getNString(java.lang.String parameterName)
Retrieves the value of the designated
NCHAR ,
NVARCHAR
or LONGNVARCHAR parameter as
a String in the Java programming language. |
java.lang.String |
DatabaseMetaData.getNumericFunctions()
Retrieves a comma-separated list of math functions available with
this database.
|
java.lang.Object |
Ref.getObject()
Retrieves the SQL structured type instance referenced by
this
Ref object. |
java.lang.Object |
ResultSet.getObject(int columnIndex)
Gets the value of the designated column in the current row
of this
ResultSet object as
an Object in the Java programming language. |
java.lang.Object |
CallableStatement.getObject(int parameterIndex)
Retrieves the value of the designated parameter as an
Object
in the Java programming language. |
java.lang.Object |
ResultSet.getObject(int columnIndex,
java.util.Map map)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Object
in the Java programming language. |
java.lang.Object |
CallableStatement.getObject(int parameterIndex,
java.util.Map map)
Returns an object representing the value of OUT parameter
parameterIndex and uses map for the custom
mapping of the parameter value. |
java.lang.Object |
Ref.getObject(java.util.Map map)
Retrieves the referenced object and maps it to a Java type
using the given type map.
|
java.lang.Object |
ResultSet.getObject(java.lang.String columnLabel)
Gets the value of the designated column in the current row
of this
ResultSet object as
an Object in the Java programming language. |
java.lang.Object |
CallableStatement.getObject(java.lang.String parameterName)
Retrieves the value of a parameter as an
Object in the Java
programming language. |
java.lang.Object |
ResultSet.getObject(java.lang.String columnLabel,
java.util.Map map)
Retrieves the value of the designated column in the current row
of this
ResultSet object as an Object
in the Java programming language. |
java.lang.Object |
CallableStatement.getObject(java.lang.String parameterName,
java.util.Map map)
Returns an object representing the value of OUT parameter
parameterName and uses map for the custom
mapping of the parameter value. |
java.lang.String |
ParameterMetaData.getParameterClassName(int param)
Retrieves the fully-qualified name of the Java class whose instances
should be passed to the method
PreparedStatement.setObject . |
int |
ParameterMetaData.getParameterCount()
Retrieves the number of parameters in the
PreparedStatement
object for which this ParameterMetaData object contains
information. |
ParameterMetaData |
PreparedStatement.getParameterMetaData()
Retrieves the number, types and properties of this
PreparedStatement object's parameters. |
int |
ParameterMetaData.getParameterMode(int param)
Retrieves the designated parameter's mode.
|
int |
ParameterMetaData.getParameterType(int param)
Retrieves the designated parameter's SQL type.
|
java.lang.String |
ParameterMetaData.getParameterTypeName(int param)
Retrieves the designated parameter's database-specific type name.
|
int |
ResultSetMetaData.getPrecision(int column)
Get the designated column's specified column size.
|
int |
ParameterMetaData.getPrecision(int param)
Retrieves the designated parameter's specified column size.
|
ResultSet |
DatabaseMetaData.getPrimaryKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the given table's primary key columns.
|
ResultSet |
DatabaseMetaData.getProcedureColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's stored procedure parameter
and result columns.
|
ResultSet |
DatabaseMetaData.getProcedures(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern)
Retrieves a description of the stored procedures available in the given
catalog.
|
java.lang.String |
DatabaseMetaData.getProcedureTerm()
Retrieves the database vendor's preferred term for "procedure".
|
DriverPropertyInfo[] |
Driver.getPropertyInfo(java.lang.String url,
java.util.Properties info)
Gets information about the possible properties for this driver.
|
int |
Statement.getQueryTimeout()
Retrieves the number of seconds the driver will
wait for a
Statement object to execute. |
Ref |
ResultSet.getRef(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Ref object
in the Java programming language. |
Ref |
CallableStatement.getRef(int parameterIndex)
Retrieves the value of the designated JDBC
REF(<structured-type>)
parameter as a Ref object in the Java programming language. |
Ref |
ResultSet.getRef(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a Ref object
in the Java programming language. |
Ref |
CallableStatement.getRef(java.lang.String parameterName)
Retrieves the value of a JDBC
REF(<structured-type>)
parameter as a Ref object in the Java programming language. |
ResultSet |
Statement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
Array.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
Array.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
Array.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
Array.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
int |
Statement.getResultSetConcurrency()
Retrieves the result set concurrency for
ResultSet objects
generated by this Statement object. |
int |
Statement.getResultSetHoldability()
Retrieves the result set holdability for
ResultSet objects
generated by this Statement object. |
int |
DatabaseMetaData.getResultSetHoldability()
Retrieves this database's default holdability for
ResultSet
objects. |
int |
Statement.getResultSetType()
Retrieves the result set type for
ResultSet objects
generated by this Statement object. |
int |
ResultSet.getRow()
Retrieves the current row number.
|
RowId |
ResultSet.getRowId(int columnIndex)
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java
programming language. |
RowId |
CallableStatement.getRowId(int parameterIndex)
Retrieves the value of the designated JDBC
ROWID parameter as a
java.sql.RowId object. |
RowId |
ResultSet.getRowId(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row of this
ResultSet object as a java.sql.RowId object in the Java
programming language. |
RowId |
CallableStatement.getRowId(java.lang.String parameterName)
Retrieves the value of the designated JDBC
ROWID parameter as a
java.sql.RowId object. |
RowIdLifetime |
DatabaseMetaData.getRowIdLifetime()
Indicates whether or not this data source supports the SQL
ROWID type,
and if so the lifetime for which a RowId object remains valid. |
int |
Savepoint.getSavepointId()
Retrieves the generated ID for the savepoint that this
Savepoint object represents. |
java.lang.String |
Savepoint.getSavepointName()
Retrieves the name of the savepoint that this
Savepoint
object represents. |
int |
ResultSetMetaData.getScale(int column)
Gets the designated column's number of digits to right of the decimal point.
|
int |
ParameterMetaData.getScale(int param)
Retrieves the designated parameter's number of digits to right of the decimal point.
|
java.lang.String |
ResultSetMetaData.getSchemaName(int column)
Get the designated column's table's schema.
|
ResultSet |
DatabaseMetaData.getSchemas()
Retrieves the schema names available in this database.
|
ResultSet |
DatabaseMetaData.getSchemas(java.lang.String catalog,
java.lang.String schemaPattern)
Retrieves the schema names available in this database.
|
java.lang.String |
DatabaseMetaData.getSchemaTerm()
Retrieves the database vendor's preferred term for "schema".
|
java.lang.String |
DatabaseMetaData.getSearchStringEscape()
Retrieves the string that can be used to escape wildcard characters.
|
short |
ResultSet.getShort(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a short in the Java programming language. |
short |
CallableStatement.getShort(int parameterIndex)
Retrieves the value of the designated JDBC
SMALLINT parameter
as a short in the Java programming language. |
short |
ResultSet.getShort(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a short in the Java programming language. |
short |
CallableStatement.getShort(java.lang.String parameterName)
Retrieves the value of a JDBC
SMALLINT parameter as a short
in the Java programming language. |
javax.xml.transform.Source |
SQLXML.getSource(java.lang.Class sourceClass)
Returns a Source for reading the XML value designated by this SQLXML instance.
|
java.lang.String |
DatabaseMetaData.getSQLKeywords()
Retrieves a comma-separated list of all of this database's SQL keywords
that are NOT also SQL:2003 keywords.
|
int |
DatabaseMetaData.getSQLStateType()
Indicates whether the SQLSTATE returned by
SQLException.getSQLState
is X/Open (now known as Open Group) SQL CLI or SQL:2003. |
java.lang.String |
Struct.getSQLTypeName()
Retrieves the SQL type name of the SQL structured type
that this
Struct object represents. |
java.lang.String |
SQLData.getSQLTypeName()
Returns the fully-qualified
name of the SQL user-defined type that this object represents.
|
SQLXML |
ResultSet.getSQLXML(int columnIndex)
Retrieves the value of the designated column in the current row of
this
ResultSet as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
CallableStatement.getSQLXML(int parameterIndex)
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
ResultSet.getSQLXML(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row of
this
ResultSet as a
java.sql.SQLXML object in the Java programming language. |
SQLXML |
CallableStatement.getSQLXML(java.lang.String parameterName)
Retrieves the value of the designated
SQL XML parameter as a
java.sql.SQLXML object in the Java programming language. |
Statement |
ResultSet.getStatement()
Retrieves the
Statement object that produced this
ResultSet object. |
java.lang.String |
SQLXML.getString()
Returns a string representation of the XML value designated by this SQLXML instance.
|
java.lang.String |
ResultSet.getString(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
CallableStatement.getString(int parameterIndex)
Retrieves the value of the designated JDBC
CHAR ,
VARCHAR , or LONGVARCHAR parameter as a
String in the Java programming language. |
java.lang.String |
ResultSet.getString(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a String in the Java programming language. |
java.lang.String |
CallableStatement.getString(java.lang.String parameterName)
Retrieves the value of a JDBC
CHAR , VARCHAR ,
or LONGVARCHAR parameter as a String in
the Java programming language. |
java.lang.String |
DatabaseMetaData.getStringFunctions()
Retrieves a comma-separated list of string functions available with
this database.
|
java.lang.String |
Clob.getSubString(long pos,
int length)
Retrieves a copy of the specified substring
in the
CLOB value
designated by this Clob object. |
ResultSet |
DatabaseMetaData.getSuperTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the table hierarchies defined in a particular
schema in this database.
|
ResultSet |
DatabaseMetaData.getSuperTypes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern)
Retrieves a description of the user-defined type (UDT) hierarchies defined in a
particular schema in this database.
|
java.lang.String |
DatabaseMetaData.getSystemFunctions()
Retrieves a comma-separated list of system functions available with
this database.
|
java.lang.String |
ResultSetMetaData.getTableName(int column)
Gets the designated column's table name.
|
ResultSet |
DatabaseMetaData.getTablePrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the access rights for each table available
in a catalog.
|
ResultSet |
DatabaseMetaData.getTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String[] types)
Retrieves a description of the tables available in the given catalog.
|
ResultSet |
DatabaseMetaData.getTableTypes()
Retrieves the table types available in this database.
|
Time |
ResultSet.getTime(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Time object in the Java programming language. |
Time |
CallableStatement.getTime(int parameterIndex)
Retrieves the value of the designated JDBC
TIME parameter as a
java.sql.Time object. |
Time |
ResultSet.getTime(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Time object
in the Java programming language. |
Time |
CallableStatement.getTime(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
TIME parameter as a
java.sql.Time object, using
the given Calendar object
to construct the time. |
Time |
ResultSet.getTime(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Time object in the Java programming language. |
Time |
CallableStatement.getTime(java.lang.String parameterName)
Retrieves the value of a JDBC
TIME parameter as a
java.sql.Time object. |
Time |
ResultSet.getTime(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Time object
in the Java programming language. |
Time |
CallableStatement.getTime(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
TIME parameter as a
java.sql.Time object, using
the given Calendar object
to construct the time. |
java.lang.String |
DatabaseMetaData.getTimeDateFunctions()
Retrieves a comma-separated list of the time and date functions available
with this database.
|
Timestamp |
ResultSet.getTimestamp(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Timestamp object in the Java programming language. |
Timestamp |
CallableStatement.getTimestamp(int parameterIndex)
Retrieves the value of the designated JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object. |
Timestamp |
ResultSet.getTimestamp(int columnIndex,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Timestamp object
in the Java programming language. |
Timestamp |
CallableStatement.getTimestamp(int parameterIndex,
java.util.Calendar cal)
Retrieves the value of the designated JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object, using
the given Calendar object to construct
the Timestamp object. |
Timestamp |
ResultSet.getTimestamp(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as
a java.sql.Timestamp object in the Java programming language. |
Timestamp |
CallableStatement.getTimestamp(java.lang.String parameterName)
Retrieves the value of a JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object. |
Timestamp |
ResultSet.getTimestamp(java.lang.String columnLabel,
java.util.Calendar cal)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.sql.Timestamp object
in the Java programming language. |
Timestamp |
CallableStatement.getTimestamp(java.lang.String parameterName,
java.util.Calendar cal)
Retrieves the value of a JDBC
TIMESTAMP parameter as a
java.sql.Timestamp object, using
the given Calendar object to construct
the Timestamp object. |
int |
Connection.getTransactionIsolation()
Retrieves this
Connection object's current
transaction isolation level. |
int |
ResultSet.getType()
Retrieves the type of this
ResultSet object. |
ResultSet |
DatabaseMetaData.getTypeInfo()
Retrieves a description of all the data types supported by
this database.
|
java.util.Map |
Connection.getTypeMap()
Retrieves the
Map object associated with this
Connection object. |
ResultSet |
DatabaseMetaData.getUDTs(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
int[] types)
Retrieves a description of the user-defined types (UDTs) defined
in a particular schema.
|
java.io.InputStream |
ResultSet.getUnicodeStream(int columnIndex)
Deprecated.
use
getCharacterStream in place of
getUnicodeStream |
java.io.InputStream |
ResultSet.getUnicodeStream(java.lang.String columnLabel)
Deprecated.
use
getCharacterStream instead |
int |
Statement.getUpdateCount()
Retrieves the current result as an update count;
if the result is a
ResultSet object or there are no more results, -1
is returned. |
java.lang.String |
DatabaseMetaData.getURL()
Retrieves the URL for this DBMS.
|
java.net.URL |
ResultSet.getURL(int columnIndex)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.net.URL
object in the Java programming language. |
java.net.URL |
CallableStatement.getURL(int parameterIndex)
Retrieves the value of the designated JDBC
DATALINK parameter as a
java.net.URL object. |
java.net.URL |
ResultSet.getURL(java.lang.String columnLabel)
Retrieves the value of the designated column in the current row
of this
ResultSet object as a java.net.URL
object in the Java programming language. |
java.net.URL |
CallableStatement.getURL(java.lang.String parameterName)
Retrieves the value of a JDBC
DATALINK parameter as a
java.net.URL object. |
java.lang.String |
DatabaseMetaData.getUserName()
Retrieves the user name as known to this database.
|
ResultSet |
DatabaseMetaData.getVersionColumns(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of a table's columns that are automatically
updated when any value in a row is updated.
|
SQLWarning |
Statement.getWarnings()
Retrieves the first warning reported by calls on this
Statement object. |
SQLWarning |
ResultSet.getWarnings()
Retrieves the first warning reported by calls on this
ResultSet object. |
SQLWarning |
Connection.getWarnings()
Retrieves the first warning reported by calls on this
Connection object. |
void |
ResultSet.insertRow()
Inserts the contents of the insert row into this
ResultSet object and into the database. |
boolean |
DatabaseMetaData.insertsAreDetected(int type)
Retrieves whether or not a visible row insert can be detected
by calling the method
ResultSet.rowInserted . |
boolean |
ResultSet.isAfterLast()
Retrieves whether the cursor is after the last row in
this
ResultSet object. |
boolean |
ResultSetMetaData.isAutoIncrement(int column)
Indicates whether the designated column is automatically numbered.
|
boolean |
ResultSet.isBeforeFirst()
Retrieves whether the cursor is before the first row in
this
ResultSet object. |
boolean |
ResultSetMetaData.isCaseSensitive(int column)
Indicates whether a column's case matters.
|
boolean |
DatabaseMetaData.isCatalogAtStart()
Retrieves whether a catalog appears at the start of a fully qualified
table name.
|
boolean |
Statement.isClosed()
Retrieves whether this
Statement object has been closed. |
boolean |
ResultSet.isClosed()
Retrieves whether this
ResultSet object has been closed. |
boolean |
Connection.isClosed()
Retrieves whether this
Connection object has been
closed. |
boolean |
ResultSetMetaData.isCurrency(int column)
Indicates whether the designated column is a cash value.
|
boolean |
ResultSetMetaData.isDefinitelyWritable(int column)
Indicates whether a write on the designated column will definitely succeed.
|
boolean |
ResultSet.isFirst()
Retrieves whether the cursor is on the first row of
this
ResultSet object. |
boolean |
ResultSet.isLast()
Retrieves whether the cursor is on the last row of
this
ResultSet object. |
int |
ResultSetMetaData.isNullable(int column)
Indicates the nullability of values in the designated column.
|
int |
ParameterMetaData.isNullable(int param)
Retrieves whether null values are allowed in the designated parameter.
|
boolean |
Statement.isPoolable()
Returns a value indicating whether the
Statement
is poolable or not. |
boolean |
DatabaseMetaData.isReadOnly()
Retrieves whether this database is in read-only mode.
|
boolean |
Connection.isReadOnly()
Retrieves whether this
Connection
object is in read-only mode. |
boolean |
ResultSetMetaData.isReadOnly(int column)
Indicates whether the designated column is definitely not writable.
|
boolean |
ResultSetMetaData.isSearchable(int column)
Indicates whether the designated column can be used in a where clause.
|
boolean |
ResultSetMetaData.isSigned(int column)
Indicates whether values in the designated column are signed numbers.
|
boolean |
ParameterMetaData.isSigned(int param)
Retrieves whether values for the designated parameter can be signed numbers.
|
boolean |
Connection.isValid(int timeout)
Returns true if the connection has not been closed and is still valid.
|
boolean |
Wrapper.isWrapperFor(java.lang.Class iface)
Returns true if this either implements the interface argument or is directly or indirectly a wrapper
for an object that does.
|
boolean |
ResultSetMetaData.isWritable(int column)
Indicates whether it is possible for a write on the designated column to succeed.
|
boolean |
ResultSet.last()
Moves the cursor to the last row in
this
ResultSet object. |
long |
Clob.length()
Retrieves the number of characters
in the
CLOB value
designated by this Clob object. |
long |
Blob.length()
Returns the number of bytes in the
BLOB value
designated by this Blob object. |
boolean |
DatabaseMetaData.locatorsUpdateCopy()
Indicates whether updates made to a LOB are made on a copy or directly
to the LOB.
|
void |
ResultSet.moveToCurrentRow()
Moves the cursor to the remembered cursor position, usually the
current row.
|
void |
ResultSet.moveToInsertRow()
Moves the cursor to the insert row.
|
java.lang.String |
Connection.nativeSQL(java.lang.String sql)
Converts the given SQL statement into the system's native SQL grammar.
|
boolean |
ResultSet.next()
Moves the cursor froward one row from its current position.
|
boolean |
DatabaseMetaData.nullPlusNonNullIsNull()
Retrieves whether this database supports concatenations between
NULL and non-NULL values being
NULL . |
boolean |
DatabaseMetaData.nullsAreSortedAtEnd()
Retrieves whether
NULL values are sorted at the end regardless of
sort order. |
boolean |
DatabaseMetaData.nullsAreSortedAtStart()
Retrieves whether
NULL values are sorted at the start regardless
of sort order. |
boolean |
DatabaseMetaData.nullsAreSortedHigh()
Retrieves whether
NULL values are sorted high. |
boolean |
DatabaseMetaData.nullsAreSortedLow()
Retrieves whether
NULL values are sorted low. |
boolean |
DatabaseMetaData.othersDeletesAreVisible(int type)
Retrieves whether deletes made by others are visible.
|
boolean |
DatabaseMetaData.othersInsertsAreVisible(int type)
Retrieves whether inserts made by others are visible.
|
boolean |
DatabaseMetaData.othersUpdatesAreVisible(int type)
Retrieves whether updates made by others are visible.
|
boolean |
DatabaseMetaData.ownDeletesAreVisible(int type)
Retrieves whether a result set's own deletes are visible.
|
boolean |
DatabaseMetaData.ownInsertsAreVisible(int type)
Retrieves whether a result set's own inserts are visible.
|
boolean |
DatabaseMetaData.ownUpdatesAreVisible(int type)
Retrieves whether for the given type of
ResultSet object,
the result set's own updates are visible. |
long |
Blob.position(Blob pattern,
long start)
Retrieves the byte position in the
BLOB value
designated by this Blob object at which
pattern begins. |
long |
Blob.position(byte[] pattern,
long start)
Retrieves the byte position at which the specified byte array
pattern begins within the BLOB
value that this Blob object represents. |
long |
Clob.position(Clob searchstr,
long start)
Retrieves the character position at which the specified
Clob object searchstr appears in this
Clob object. |
long |
Clob.position(java.lang.String searchstr,
long start)
Retrieves the character position at which the specified substring
searchstr appears in the SQL CLOB value
represented by this Clob object. |
CallableStatement |
Connection.prepareCall(java.lang.String sql)
Creates a
CallableStatement object for calling
database stored procedures. |
CallableStatement |
Connection.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
Creates a
CallableStatement object that will generate
ResultSet objects with the given type and concurrency. |
CallableStatement |
Connection.prepareCall(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
CallableStatement object that will generate
ResultSet objects with the given type and concurrency. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql)
Creates a
PreparedStatement object for sending
parameterized SQL statements to the database. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql,
int autoGeneratedKeys)
Creates a default
PreparedStatement object that has
the capability to retrieve auto-generated keys. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql,
int[] columnIndexes)
Creates a default
PreparedStatement object capable
of returning the auto-generated keys designated by the given array. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency)
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type and concurrency. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql,
int resultSetType,
int resultSetConcurrency,
int resultSetHoldability)
Creates a
PreparedStatement object that will generate
ResultSet objects with the given type, concurrency,
and holdability. |
PreparedStatement |
Connection.prepareStatement(java.lang.String sql,
java.lang.String[] columnNames)
Creates a default
PreparedStatement object capable
of returning the auto-generated keys designated by the given array. |
boolean |
ResultSet.previous()
Moves the cursor to the previous row in this
ResultSet object. |
Array |
SQLInput.readArray()
Reads an SQL
ARRAY value from the stream and returns it as an
Array object in the Java programming language. |
java.io.InputStream |
SQLInput.readAsciiStream()
Reads the next attribute in the stream and returns it as a stream of ASCII characters.
|
java.math.BigDecimal |
SQLInput.readBigDecimal()
Reads the next attribute in the stream and returns it as a
java.math.BigDecimal
object in the Java programming language. |
java.io.InputStream |
SQLInput.readBinaryStream()
Reads the next attribute in the stream and returns it as a stream of uninterpreted
bytes.
|
Blob |
SQLInput.readBlob()
Reads an SQL
BLOB value from the stream and returns it as a
Blob object in the Java programming language. |
boolean |
SQLInput.readBoolean()
Reads the next attribute in the stream and returns it as a
boolean
in the Java programming language. |
byte |
SQLInput.readByte()
Reads the next attribute in the stream and returns it as a
byte
in the Java programming language. |
byte[] |
SQLInput.readBytes()
Reads the next attribute in the stream and returns it as an array of bytes
in the Java programming language.
|
java.io.Reader |
SQLInput.readCharacterStream()
Reads the next attribute in the stream and returns it as a stream of Unicode characters.
|
Clob |
SQLInput.readClob()
Reads an SQL
CLOB value from the stream and returns it as a
Clob object in the Java programming language. |
Date |
SQLInput.readDate()
Reads the next attribute in the stream and returns it as a
java.sql.Date object. |
double |
SQLInput.readDouble()
Reads the next attribute in the stream and returns it as a
double
in the Java programming language. |
float |
SQLInput.readFloat()
Reads the next attribute in the stream and returns it as a
float
in the Java programming language. |
int |
SQLInput.readInt()
Reads the next attribute in the stream and returns it as an
int
in the Java programming language. |
long |
SQLInput.readLong()
Reads the next attribute in the stream and returns it as a
long
in the Java programming language. |
NClob |
SQLInput.readNClob()
Reads an SQL
NCLOB value from the stream and returns it as a
NClob object in the Java programming language. |
java.lang.String |
SQLInput.readNString()
Reads the next attribute in the stream and returns it as a
String
in the Java programming language. |
java.lang.Object |
SQLInput.readObject()
Reads the datum at the head of the stream and returns it as an
Object in the Java programming language. |
Ref |
SQLInput.readRef()
Reads an SQL
REF value from the stream and returns it as a
Ref object in the Java programming language. |
RowId |
SQLInput.readRowId()
Reads an SQL
ROWID value from the stream and returns it as a
RowId object in the Java programming language. |
short |
SQLInput.readShort()
Reads the next attribute in the stream and returns it as a
short
in the Java programming language. |
void |
SQLData.readSQL(SQLInput stream,
java.lang.String typeName)
Populates this object with data read from the database.
|
SQLXML |
SQLInput.readSQLXML()
Reads an SQL
XML value from the stream and returns it as a
SQLXML object in the Java programming language. |
java.lang.String |
SQLInput.readString()
Reads the next attribute in the stream and returns it as a
String
in the Java programming language. |
Time |
SQLInput.readTime()
Reads the next attribute in the stream and returns it as a
java.sql.Time object. |
Timestamp |
SQLInput.readTimestamp()
Reads the next attribute in the stream and returns it as a
java.sql.Timestamp object. |
java.net.URL |
SQLInput.readURL()
Reads an SQL
DATALINK value from the stream and returns it as a
java.net.URL object in the Java programming language. |
void |
ResultSet.refreshRow()
Refreshes the current row with its most recent value in
the database.
|
static void |
DriverManager.registerDriver(Driver driver)
Registers the given driver with the
DriverManager . |
void |
CallableStatement.registerOutParameter(int parameterIndex,
int sqlType)
Registers the OUT parameter in ordinal position
parameterIndex to the JDBC type
sqlType . |
void |
CallableStatement.registerOutParameter(int parameterIndex,
int sqlType,
int scale)
Registers the parameter in ordinal position
parameterIndex to be of JDBC type
sqlType . |
void |
CallableStatement.registerOutParameter(int parameterIndex,
int sqlType,
java.lang.String typeName)
Registers the designated output parameter.
|
void |
CallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType)
Registers the OUT parameter named
parameterName to the JDBC type
sqlType . |
void |
CallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
int scale)
Registers the parameter named
parameterName to be of JDBC type
sqlType . |
void |
CallableStatement.registerOutParameter(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
Registers the designated output parameter.
|
boolean |
ResultSet.relative(int rows)
Moves the cursor a relative number of rows, either positive or negative.
|
void |
Connection.releaseSavepoint(Savepoint savepoint)
Removes the specified
Savepoint and subsequent Savepoint objects from the current
transaction. |
void |
Connection.rollback()
Undoes all changes made in the current transaction
and releases any database locks currently held
by this
Connection object. |
void |
Connection.rollback(Savepoint savepoint)
Undoes all changes made after the given
Savepoint object
was set. |
boolean |
ResultSet.rowDeleted()
Retrieves whether a row has been deleted.
|
boolean |
ResultSet.rowInserted()
Retrieves whether the current row has had an insertion.
|
boolean |
ResultSet.rowUpdated()
Retrieves whether the current row has been updated.
|
void |
PreparedStatement.setArray(int parameterIndex,
Array x)
Sets the designated parameter to the given
java.sql.Array object. |
void |
PreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
PreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
PreparedStatement.setAsciiStream(int parameterIndex,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
java.io.OutputStream |
Clob.setAsciiStream(long pos)
Retrieves a stream to be used to write Ascii characters to the
CLOB value that this Clob object represents,
starting at position pos . |
void |
CallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
CallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
CallableStatement.setAsciiStream(java.lang.String parameterName,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
Connection.setAutoCommit(boolean autoCommit)
Sets this connection's auto-commit mode to the given state.
|
void |
PreparedStatement.setBigDecimal(int parameterIndex,
java.math.BigDecimal x)
Sets the designated parameter to the given
java.math.BigDecimal value. |
void |
CallableStatement.setBigDecimal(java.lang.String parameterName,
java.math.BigDecimal x)
Sets the designated parameter to the given
java.math.BigDecimal value. |
java.io.OutputStream |
SQLXML.setBinaryStream()
Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
|
void |
PreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
PreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
PreparedStatement.setBinaryStream(int parameterIndex,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
java.io.OutputStream |
Blob.setBinaryStream(long pos)
Retrieves a stream that can be used to write to the
BLOB
value that this Blob object represents. |
void |
CallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x)
Sets the designated parameter to the given input stream.
|
void |
CallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
int length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
CallableStatement.setBinaryStream(java.lang.String parameterName,
java.io.InputStream x,
long length)
Sets the designated parameter to the given input stream, which will have
the specified number of bytes.
|
void |
PreparedStatement.setBlob(int parameterIndex,
Blob x)
Sets the designated parameter to the given
java.sql.Blob object. |
void |
PreparedStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream)
Sets the designated parameter to a
InputStream object. |
void |
PreparedStatement.setBlob(int parameterIndex,
java.io.InputStream inputStream,
long length)
Sets the designated parameter to a
InputStream object. |
void |
CallableStatement.setBlob(java.lang.String parameterName,
Blob x)
Sets the designated parameter to the given
java.sql.Blob object. |
void |
CallableStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream)
Sets the designated parameter to a
InputStream object. |
void |
CallableStatement.setBlob(java.lang.String parameterName,
java.io.InputStream inputStream,
long length)
Sets the designated parameter to a
InputStream object. |
void |
PreparedStatement.setBoolean(int parameterIndex,
boolean x)
Sets the designated parameter to the given Java
boolean value. |
void |
CallableStatement.setBoolean(java.lang.String parameterName,
boolean x)
Sets the designated parameter to the given Java
boolean value. |
void |
PreparedStatement.setByte(int parameterIndex,
byte x)
Sets the designated parameter to the given Java
byte value. |
void |
CallableStatement.setByte(java.lang.String parameterName,
byte x)
Sets the designated parameter to the given Java
byte value. |
void |
PreparedStatement.setBytes(int parameterIndex,
byte[] x)
Sets the designated parameter to the given Java array of bytes.
|
int |
Blob.setBytes(long pos,
byte[] bytes)
Writes the given array of bytes to the
BLOB value that
this Blob object represents, starting at position
pos , and returns the number of bytes written. |
int |
Blob.setBytes(long pos,
byte[] bytes,
int offset,
int len)
Writes all or part of the given
byte array to the
BLOB value that this Blob object represents
and returns the number of bytes written. |
void |
CallableStatement.setBytes(java.lang.String parameterName,
byte[] x)
Sets the designated parameter to the given Java array of bytes.
|
void |
Connection.setCatalog(java.lang.String catalog)
Sets the given catalog name in order to select
a subspace of this
Connection object's database
in which to work. |
java.io.Writer |
SQLXML.setCharacterStream()
Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
|
void |
PreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to the given
Reader
object. |
void |
PreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
int length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
PreparedStatement.setCharacterStream(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
java.io.Writer |
Clob.setCharacterStream(long pos)
Retrieves a stream to be used to write a stream of Unicode characters
to the
CLOB value that this Clob object
represents, at position pos . |
void |
CallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to the given
Reader
object. |
void |
CallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
int length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
CallableStatement.setCharacterStream(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to the given
Reader
object, which is the given number of characters long. |
void |
PreparedStatement.setClob(int parameterIndex,
Clob x)
Sets the designated parameter to the given
java.sql.Clob object. |
void |
PreparedStatement.setClob(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
PreparedStatement.setClob(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setClob(java.lang.String parameterName,
Clob x)
Sets the designated parameter to the given
java.sql.Clob object. |
void |
CallableStatement.setClob(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setClob(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
Statement.setCursorName(java.lang.String name)
Sets the SQL cursor name to the given
String , which
will be used by subsequent Statement object
execute methods. |
void |
PreparedStatement.setDate(int parameterIndex,
Date x)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
PreparedStatement.setDate(int parameterIndex,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
CallableStatement.setDate(java.lang.String parameterName,
Date x)
Sets the designated parameter to the given
java.sql.Date value
using the default time zone of the virtual machine that is running
the application. |
void |
CallableStatement.setDate(java.lang.String parameterName,
Date x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Date value,
using the given Calendar object. |
void |
PreparedStatement.setDouble(int parameterIndex,
double x)
Sets the designated parameter to the given Java
double value. |
void |
CallableStatement.setDouble(java.lang.String parameterName,
double x)
Sets the designated parameter to the given Java
double value. |
void |
Statement.setEscapeProcessing(boolean enable)
Sets escape processing on or off.
|
void |
Statement.setFetchDirection(int direction)
Gives the driver a hint as to the direction in which
rows will be processed in
ResultSet
objects created using this Statement object. |
void |
ResultSet.setFetchDirection(int direction)
Gives a hint as to the direction in which the rows in this
ResultSet object will be processed. |
void |
Statement.setFetchSize(int rows)
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for
ResultSet objects genrated by this Statement . |
void |
ResultSet.setFetchSize(int rows)
Gives the JDBC driver a hint as to the number of rows that should
be fetched from the database when more rows are needed for this
ResultSet object. |
void |
PreparedStatement.setFloat(int parameterIndex,
float x)
Sets the designated parameter to the given Java
float value. |
void |
CallableStatement.setFloat(java.lang.String parameterName,
float x)
Sets the designated parameter to the given Java
float value. |
void |
Connection.setHoldability(int holdability)
Changes the default holdability of
ResultSet objects
created using this Connection object to the given
holdability. |
void |
PreparedStatement.setInt(int parameterIndex,
int x)
Sets the designated parameter to the given Java
int value. |
void |
CallableStatement.setInt(java.lang.String parameterName,
int x)
Sets the designated parameter to the given Java
int value. |
void |
PreparedStatement.setLong(int parameterIndex,
long x)
Sets the designated parameter to the given Java
long value. |
void |
CallableStatement.setLong(java.lang.String parameterName,
long x)
Sets the designated parameter to the given Java
long value. |
void |
Statement.setMaxFieldSize(int max)
Sets the limit for the maximum number of bytes that can be returned for
character and binary column values in a
ResultSet
object produced by this Statement object. |
void |
Statement.setMaxRows(int max)
Sets the limit for the maximum number of rows that any
ResultSet object generated by this Statement
object can contain to the given number. |
void |
PreparedStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value)
Sets the designated parameter to a
Reader object. |
void |
PreparedStatement.setNCharacterStream(int parameterIndex,
java.io.Reader value,
long length)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setNCharacterStream(java.lang.String parameterName,
java.io.Reader value,
long length)
Sets the designated parameter to a
Reader object. |
void |
PreparedStatement.setNClob(int parameterIndex,
NClob value)
Sets the designated parameter to a
java.sql.NClob object. |
void |
PreparedStatement.setNClob(int parameterIndex,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
PreparedStatement.setNClob(int parameterIndex,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setNClob(java.lang.String parameterName,
NClob value)
Sets the designated parameter to a
java.sql.NClob object. |
void |
CallableStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader)
Sets the designated parameter to a
Reader object. |
void |
CallableStatement.setNClob(java.lang.String parameterName,
java.io.Reader reader,
long length)
Sets the designated parameter to a
Reader object. |
void |
PreparedStatement.setNString(int parameterIndex,
java.lang.String value)
Sets the designated paramter to the given
String object. |
void |
CallableStatement.setNString(java.lang.String parameterName,
java.lang.String value)
Sets the designated parameter to the given
String object. |
void |
PreparedStatement.setNull(int parameterIndex,
int sqlType)
Sets the designated parameter to SQL
NULL . |
void |
PreparedStatement.setNull(int parameterIndex,
int sqlType,
java.lang.String typeName)
Sets the designated parameter to SQL
NULL . |
void |
CallableStatement.setNull(java.lang.String parameterName,
int sqlType)
Sets the designated parameter to SQL
NULL . |
void |
CallableStatement.setNull(java.lang.String parameterName,
int sqlType,
java.lang.String typeName)
Sets the designated parameter to SQL
NULL . |
void |
PreparedStatement.setObject(int parameterIndex,
java.lang.Object x)
Sets the value of the designated parameter using the given object.
|
void |
PreparedStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType)
Sets the value of the designated parameter with the given object.
|
void |
PreparedStatement.setObject(int parameterIndex,
java.lang.Object x,
int targetSqlType,
int scaleOrLength)
Sets the value of the designated parameter with the given object.
|
void |
Ref.setObject(java.lang.Object value)
Sets the structured type value that this
Ref
object references to the given instance of Object . |
void |
CallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x)
Sets the value of the designated parameter with the given object.
|
void |
CallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType)
Sets the value of the designated parameter with the given object.
|
void |
CallableStatement.setObject(java.lang.String parameterName,
java.lang.Object x,
int targetSqlType,
int scale)
Sets the value of the designated parameter with the given object.
|
void |
Statement.setPoolable(boolean poolable)
Requests that a
Statement be pooled or not pooled. |
void |
Statement.setQueryTimeout(int seconds)
Sets the number of seconds the driver will wait for a
Statement object to execute to the given number of seconds. |
void |
Connection.setReadOnly(boolean readOnly)
Puts this connection in read-only mode as a hint to the driver to enable
database optimizations.
|
void |
PreparedStatement.setRef(int parameterIndex,
Ref x)
Sets the designated parameter to the given
REF(<structured-type>) value. |
javax.xml.transform.Result |
SQLXML.setResult(java.lang.Class resultClass)
Returns a Result for setting the XML value designated by this SQLXML instance.
|
void |
PreparedStatement.setRowId(int parameterIndex,
RowId x)
Sets the designated parameter to the given
java.sql.RowId object. |
void |
CallableStatement.setRowId(java.lang.String parameterName,
RowId x)
Sets the designated parameter to the given
java.sql.RowId object. |
Savepoint |
Connection.setSavepoint()
Creates an unnamed savepoint in the current transaction and
returns the new
Savepoint object that represents it. |
Savepoint |
Connection.setSavepoint(java.lang.String name)
Creates a savepoint with the given name in the current transaction
and returns the new
Savepoint object that represents it. |
void |
PreparedStatement.setShort(int parameterIndex,
short x)
Sets the designated parameter to the given Java
short value. |
void |
CallableStatement.setShort(java.lang.String parameterName,
short x)
Sets the designated parameter to the given Java
short value. |
void |
PreparedStatement.setSQLXML(int parameterIndex,
SQLXML xmlObject)
Sets the designated parameter to the given
java.sql.SQLXML object. |
void |
CallableStatement.setSQLXML(java.lang.String parameterName,
SQLXML xmlObject)
Sets the designated parameter to the given
java.sql.SQLXML object. |
void |
PreparedStatement.setString(int parameterIndex,
java.lang.String x)
Sets the designated parameter to the given Java
String value. |
int |
Clob.setString(long pos,
java.lang.String str)
Writes the given Java
String to the CLOB
value that this Clob object designates at the position
pos . |
int |
Clob.setString(long pos,
java.lang.String str,
int offset,
int len)
Writes
len characters of str , starting
at character offset , to the CLOB value
that this Clob represents. |
void |
SQLXML.setString(java.lang.String value)
Sets the XML value designated by this SQLXML instance to the given String representation.
|
void |
CallableStatement.setString(java.lang.String parameterName,
java.lang.String x)
Sets the designated parameter to the given Java
String value. |
void |
PreparedStatement.setTime(int parameterIndex,
Time x)
Sets the designated parameter to the given
java.sql.Time value. |
void |
PreparedStatement.setTime(int parameterIndex,
Time x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Time value,
using the given Calendar object. |
void |
CallableStatement.setTime(java.lang.String parameterName,
Time x)
Sets the designated parameter to the given
java.sql.Time value. |
void |
CallableStatement.setTime(java.lang.String parameterName,
Time x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Time value,
using the given Calendar object. |
void |
PreparedStatement.setTimestamp(int parameterIndex,
Timestamp x)
Sets the designated parameter to the given
java.sql.Timestamp value. |
void |
PreparedStatement.setTimestamp(int parameterIndex,
Timestamp x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Timestamp value,
using the given Calendar object. |
void |
CallableStatement.setTimestamp(java.lang.String parameterName,
Timestamp x)
Sets the designated parameter to the given
java.sql.Timestamp value. |
void |
CallableStatement.setTimestamp(java.lang.String parameterName,
Timestamp x,
java.util.Calendar cal)
Sets the designated parameter to the given
java.sql.Timestamp value,
using the given Calendar object. |
void |
Connection.setTransactionIsolation(int level)
Attempts to change the transaction isolation level for this
Connection object to the one given. |
void |
Connection.setTypeMap(java.util.Map map)
Installs the given
TypeMap object as the type map for
this Connection object. |
void |
PreparedStatement.setUnicodeStream(int parameterIndex,
java.io.InputStream x,
int length)
Deprecated.
|
void |
PreparedStatement.setURL(int parameterIndex,
java.net.URL x)
Sets the designated parameter to the given
java.net.URL value. |
void |
CallableStatement.setURL(java.lang.String parameterName,
java.net.URL val)
Sets the designated parameter to the given
java.net.URL object. |
boolean |
DatabaseMetaData.storesLowerCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in lower case.
|
boolean |
DatabaseMetaData.storesLowerCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in lower case.
|
boolean |
DatabaseMetaData.storesMixedCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in mixed case.
|
boolean |
DatabaseMetaData.storesMixedCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in mixed case.
|
boolean |
DatabaseMetaData.storesUpperCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case insensitive and stores them in upper case.
|
boolean |
DatabaseMetaData.storesUpperCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case insensitive and stores them in upper case.
|
boolean |
DatabaseMetaData.supportsAlterTableWithAddColumn()
Retrieves whether this database supports
ALTER TABLE
with add column. |
boolean |
DatabaseMetaData.supportsAlterTableWithDropColumn()
Retrieves whether this database supports
ALTER TABLE
with drop column. |
boolean |
DatabaseMetaData.supportsANSI92EntryLevelSQL()
Retrieves whether this database supports the ANSI92 entry level SQL
grammar.
|
boolean |
DatabaseMetaData.supportsANSI92FullSQL()
Retrieves whether this database supports the ANSI92 full SQL grammar supported.
|
boolean |
DatabaseMetaData.supportsANSI92IntermediateSQL()
Retrieves whether this database supports the ANSI92 intermediate SQL grammar supported.
|
boolean |
DatabaseMetaData.supportsBatchUpdates()
Retrieves whether this database supports batch updates.
|
boolean |
DatabaseMetaData.supportsCatalogsInDataManipulation()
Retrieves whether a catalog name can be used in a data manipulation statement.
|
boolean |
DatabaseMetaData.supportsCatalogsInIndexDefinitions()
Retrieves whether a catalog name can be used in an index definition statement.
|
boolean |
DatabaseMetaData.supportsCatalogsInPrivilegeDefinitions()
Retrieves whether a catalog name can be used in a privilege definition statement.
|
boolean |
DatabaseMetaData.supportsCatalogsInProcedureCalls()
Retrieves whether a catalog name can be used in a procedure call statement.
|
boolean |
DatabaseMetaData.supportsCatalogsInTableDefinitions()
Retrieves whether a catalog name can be used in a table definition statement.
|
boolean |
DatabaseMetaData.supportsColumnAliasing()
Retrieves whether this database supports column aliasing.
|
boolean |
DatabaseMetaData.supportsConvert()
Retrieves whether this database supports the JDBC scalar function
CONVERT for the conversion of one JDBC type to another. |
boolean |
DatabaseMetaData.supportsConvert(int fromType,
int toType)
Retrieves whether this database supports the JDBC scalar function
CONVERT for conversions between the JDBC types fromType
and toType. |
boolean |
DatabaseMetaData.supportsCoreSQLGrammar()
Retrieves whether this database supports the ODBC Core SQL grammar.
|
boolean |
DatabaseMetaData.supportsCorrelatedSubqueries()
Retrieves whether this database supports correlated subqueries.
|
boolean |
DatabaseMetaData.supportsDataDefinitionAndDataManipulationTransactions()
Retrieves whether this database supports both data definition and
data manipulation statements within a transaction.
|
boolean |
DatabaseMetaData.supportsDataManipulationTransactionsOnly()
Retrieves whether this database supports only data manipulation
statements within a transaction.
|
boolean |
DatabaseMetaData.supportsDifferentTableCorrelationNames()
Retrieves whether, when table correlation names are supported, they
are restricted to being different from the names of the tables.
|
boolean |
DatabaseMetaData.supportsExpressionsInOrderBy()
Retrieves whether this database supports expressions in
ORDER BY lists. |
boolean |
DatabaseMetaData.supportsExtendedSQLGrammar()
Retrieves whether this database supports the ODBC Extended SQL grammar.
|
boolean |
DatabaseMetaData.supportsFullOuterJoins()
Retrieves whether this database supports full nested outer joins.
|
boolean |
DatabaseMetaData.supportsGetGeneratedKeys()
Retrieves whether auto-generated keys can be retrieved after
a statement has been executed
|
boolean |
DatabaseMetaData.supportsGroupBy()
Retrieves whether this database supports some form of
GROUP BY clause. |
boolean |
DatabaseMetaData.supportsGroupByBeyondSelect()
Retrieves whether this database supports using columns not included in
the
SELECT statement in a GROUP BY clause
provided that all of the columns in the SELECT statement
are included in the GROUP BY clause. |
boolean |
DatabaseMetaData.supportsGroupByUnrelated()
Retrieves whether this database supports using a column that is
not in the
SELECT statement in a
GROUP BY clause. |
boolean |
DatabaseMetaData.supportsIntegrityEnhancementFacility()
Retrieves whether this database supports the SQL Integrity
Enhancement Facility.
|
boolean |
DatabaseMetaData.supportsLikeEscapeClause()
Retrieves whether this database supports specifying a
LIKE escape clause. |
boolean |
DatabaseMetaData.supportsLimitedOuterJoins()
Retrieves whether this database provides limited support for outer
joins.
|
boolean |
DatabaseMetaData.supportsMinimumSQLGrammar()
Retrieves whether this database supports the ODBC Minimum SQL grammar.
|
boolean |
DatabaseMetaData.supportsMixedCaseIdentifiers()
Retrieves whether this database treats mixed case unquoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
DatabaseMetaData.supportsMixedCaseQuotedIdentifiers()
Retrieves whether this database treats mixed case quoted SQL identifiers as
case sensitive and as a result stores them in mixed case.
|
boolean |
DatabaseMetaData.supportsMultipleOpenResults()
Retrieves whether it is possible to have multiple
ResultSet objects
returned from a CallableStatement object
simultaneously. |
boolean |
DatabaseMetaData.supportsMultipleResultSets()
Retrieves whether this database supports getting multiple
ResultSet objects from a single call to the
method execute . |
boolean |
DatabaseMetaData.supportsMultipleTransactions()
Retrieves whether this database allows having multiple
transactions open at once (on different connections).
|
boolean |
DatabaseMetaData.supportsNamedParameters()
Retrieves whether this database supports named parameters to callable
statements.
|
boolean |
DatabaseMetaData.supportsNonNullableColumns()
Retrieves whether columns in this database may be defined as non-nullable.
|
boolean |
DatabaseMetaData.supportsOpenCursorsAcrossCommit()
Retrieves whether this database supports keeping cursors open
across commits.
|
boolean |
DatabaseMetaData.supportsOpenCursorsAcrossRollback()
Retrieves whether this database supports keeping cursors open
across rollbacks.
|
boolean |
DatabaseMetaData.supportsOpenStatementsAcrossCommit()
Retrieves whether this database supports keeping statements open
across commits.
|
boolean |
DatabaseMetaData.supportsOpenStatementsAcrossRollback()
Retrieves whether this database supports keeping statements open
across rollbacks.
|
boolean |
DatabaseMetaData.supportsOrderByUnrelated()
Retrieves whether this database supports using a column that is
not in the
SELECT statement in an
ORDER BY clause. |
boolean |
DatabaseMetaData.supportsOuterJoins()
Retrieves whether this database supports some form of outer join.
|
boolean |
DatabaseMetaData.supportsPositionedDelete()
Retrieves whether this database supports positioned
DELETE
statements. |
boolean |
DatabaseMetaData.supportsPositionedUpdate()
Retrieves whether this database supports positioned
UPDATE
statements. |
boolean |
DatabaseMetaData.supportsResultSetConcurrency(int type,
int concurrency)
Retrieves whether this database supports the given concurrency type
in combination with the given result set type.
|
boolean |
DatabaseMetaData.supportsResultSetHoldability(int holdability)
Retrieves whether this database supports the given result set holdability.
|
boolean |
DatabaseMetaData.supportsResultSetType(int type)
Retrieves whether this database supports the given result set type.
|
boolean |
DatabaseMetaData.supportsSavepoints()
Retrieves whether this database supports savepoints.
|
boolean |
DatabaseMetaData.supportsSchemasInDataManipulation()
Retrieves whether a schema name can be used in a data manipulation statement.
|
boolean |
DatabaseMetaData.supportsSchemasInIndexDefinitions()
Retrieves whether a schema name can be used in an index definition statement.
|
boolean |
DatabaseMetaData.supportsSchemasInPrivilegeDefinitions()
Retrieves whether a schema name can be used in a privilege definition statement.
|
boolean |
DatabaseMetaData.supportsSchemasInProcedureCalls()
Retrieves whether a schema name can be used in a procedure call statement.
|
boolean |
DatabaseMetaData.supportsSchemasInTableDefinitions()
Retrieves whether a schema name can be used in a table definition statement.
|
boolean |
DatabaseMetaData.supportsSelectForUpdate()
Retrieves whether this database supports
SELECT FOR UPDATE
statements. |
boolean |
DatabaseMetaData.supportsStatementPooling()
Retrieves whether this database supports statement pooling.
|
boolean |
DatabaseMetaData.supportsStoredFunctionsUsingCallSyntax()
Retrieves whether this database supports invoking user-defined or vendor functions
using the stored procedure escape syntax.
|
boolean |
DatabaseMetaData.supportsStoredProcedures()
Retrieves whether this database supports stored procedure calls
that use the stored procedure escape syntax.
|
boolean |
DatabaseMetaData.supportsSubqueriesInComparisons()
Retrieves whether this database supports subqueries in comparison
expressions.
|
boolean |
DatabaseMetaData.supportsSubqueriesInExists()
Retrieves whether this database supports subqueries in
EXISTS expressions. |
boolean |
DatabaseMetaData.supportsSubqueriesInIns()
Retrieves whether this database supports subqueries in
IN expressions. |
boolean |
DatabaseMetaData.supportsSubqueriesInQuantifieds()
Retrieves whether this database supports subqueries in quantified
expressions.
|
boolean |
DatabaseMetaData.supportsTableCorrelationNames()
Retrieves whether this database supports table correlation names.
|
boolean |
DatabaseMetaData.supportsTransactionIsolationLevel(int level)
Retrieves whether this database supports the given transaction isolation level.
|
boolean |
DatabaseMetaData.supportsTransactions()
Retrieves whether this database supports transactions.
|
boolean |
DatabaseMetaData.supportsUnion()
Retrieves whether this database supports SQL
UNION . |
boolean |
DatabaseMetaData.supportsUnionAll()
Retrieves whether this database supports SQL
UNION ALL . |
void |
Clob.truncate(long len)
Truncates the
CLOB value that this Clob
designates to have a length of len
characters. |
void |
Blob.truncate(long len)
Truncates the
BLOB value that this Blob
object represents to be len bytes in length. |
java.lang.Object |
Wrapper.unwrap(java.lang.Class iface)
Returns an object that implements the given interface to allow access to
non-standard methods, or standard methods not exposed by the proxy.
|
void |
ResultSet.updateArray(int columnIndex,
Array x)
Updates the designated column with a
java.sql.Array value. |
void |
ResultSet.updateArray(java.lang.String columnLabel,
Array x)
Updates the designated column with a
java.sql.Array value. |
void |
ResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x)
Updates the designated column with an ascii stream value.
|
void |
ResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
int length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateAsciiStream(int columnIndex,
java.io.InputStream x,
long length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x)
Updates the designated column with an ascii stream value.
|
void |
ResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
int length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateAsciiStream(java.lang.String columnLabel,
java.io.InputStream x,
long length)
Updates the designated column with an ascii stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateBigDecimal(int columnIndex,
java.math.BigDecimal x)
Updates the designated column with a
java.math.BigDecimal
value. |
void |
ResultSet.updateBigDecimal(java.lang.String columnLabel,
java.math.BigDecimal x)
Updates the designated column with a
java.sql.BigDecimal
value. |
void |
ResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x)
Updates the designated column with a binary stream value.
|
void |
ResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
int length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateBinaryStream(int columnIndex,
java.io.InputStream x,
long length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x)
Updates the designated column with a binary stream value.
|
void |
ResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
int length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateBinaryStream(java.lang.String columnLabel,
java.io.InputStream x,
long length)
Updates the designated column with a binary stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateBlob(int columnIndex,
Blob x)
Updates the designated column with a
java.sql.Blob value. |
void |
ResultSet.updateBlob(int columnIndex,
java.io.InputStream inputStream)
Updates the designated column using the given input stream.
|
void |
ResultSet.updateBlob(int columnIndex,
java.io.InputStream inputStream,
long length)
Updates the designated column using the given input stream, which
will have the specified number of bytes.
|
void |
ResultSet.updateBlob(java.lang.String columnLabel,
Blob x)
Updates the designated column with a
java.sql.Blob value. |
void |
ResultSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream)
Updates the designated column using the given input stream.
|
void |
ResultSet.updateBlob(java.lang.String columnLabel,
java.io.InputStream inputStream,
long length)
Updates the designated column using the given input stream, which
will have the specified number of bytes.
|
void |
ResultSet.updateBoolean(int columnIndex,
boolean x)
Updates the designated column with a
boolean value. |
void |
ResultSet.updateBoolean(java.lang.String columnLabel,
boolean x)
Updates the designated column with a
boolean value. |
void |
ResultSet.updateByte(int columnIndex,
byte x)
Updates the designated column with a
byte value. |
void |
ResultSet.updateByte(java.lang.String columnLabel,
byte x)
Updates the designated column with a
byte value. |
void |
ResultSet.updateBytes(int columnIndex,
byte[] x)
Updates the designated column with a
byte array value. |
void |
ResultSet.updateBytes(java.lang.String columnLabel,
byte[] x)
Updates the designated column with a byte array value.
|
void |
ResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x)
Updates the designated column with a character stream value.
|
void |
ResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
int length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateCharacterStream(int columnIndex,
java.io.Reader x,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column with a character stream value.
|
void |
ResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
int length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateClob(int columnIndex,
Clob x)
Updates the designated column with a
java.sql.Clob value. |
void |
ResultSet.updateClob(int columnIndex,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
ResultSet.updateClob(int columnIndex,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
ResultSet.updateClob(java.lang.String columnLabel,
Clob x)
Updates the designated column with a
java.sql.Clob value. |
void |
ResultSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
ResultSet.updateClob(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
ResultSet.updateDate(int columnIndex,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
ResultSet.updateDate(java.lang.String columnLabel,
Date x)
Updates the designated column with a
java.sql.Date value. |
void |
ResultSet.updateDouble(int columnIndex,
double x)
Updates the designated column with a
double value. |
void |
ResultSet.updateDouble(java.lang.String columnLabel,
double x)
Updates the designated column with a
double value. |
void |
ResultSet.updateFloat(int columnIndex,
float x)
Updates the designated column with a
float value. |
void |
ResultSet.updateFloat(java.lang.String columnLabel,
float x)
Updates the designated column with a
float value. |
void |
ResultSet.updateInt(int columnIndex,
int x)
Updates the designated column with an
int value. |
void |
ResultSet.updateInt(java.lang.String columnLabel,
int x)
Updates the designated column with an
int value. |
void |
ResultSet.updateLong(int columnIndex,
long x)
Updates the designated column with a
long value. |
void |
ResultSet.updateLong(java.lang.String columnLabel,
long x)
Updates the designated column with a
long value. |
void |
ResultSet.updateNCharacterStream(int columnIndex,
java.io.Reader x)
Updates the designated column with a character stream value.
|
void |
ResultSet.updateNCharacterStream(int columnIndex,
java.io.Reader x,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column with a character stream value.
|
void |
ResultSet.updateNCharacterStream(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column with a character stream value, which will have
the specified number of bytes.
|
void |
ResultSet.updateNClob(int columnIndex,
NClob nClob)
Updates the designated column with a
java.sql.NClob value. |
void |
ResultSet.updateNClob(int columnIndex,
java.io.Reader reader)
Updates the designated column using the given
Reader
The data will be read from the stream
as needed until end-of-stream is reached. |
void |
ResultSet.updateNClob(int columnIndex,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
ResultSet.updateNClob(java.lang.String columnLabel,
NClob nClob)
Updates the designated column with a
java.sql.NClob value. |
void |
ResultSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader)
Updates the designated column using the given
Reader
object. |
void |
ResultSet.updateNClob(java.lang.String columnLabel,
java.io.Reader reader,
long length)
Updates the designated column using the given
Reader
object, which is the given number of characters long. |
void |
ResultSet.updateNString(int columnIndex,
java.lang.String nString)
Updates the designated column with a
String value. |
void |
ResultSet.updateNString(java.lang.String columnLabel,
java.lang.String nString)
Updates the designated column with a
String value. |
void |
ResultSet.updateNull(int columnIndex)
Updates the designated column with a
null value. |
void |
ResultSet.updateNull(java.lang.String columnLabel)
Updates the designated column with a
null value. |
void |
ResultSet.updateObject(int columnIndex,
java.lang.Object x)
Updates the designated column with an
Object value. |
void |
ResultSet.updateObject(int columnIndex,
java.lang.Object x,
int scaleOrLength)
Updates the designated column with an
Object value. |
void |
ResultSet.updateObject(java.lang.String columnLabel,
java.lang.Object x)
Updates the designated column with an
Object value. |
void |
ResultSet.updateObject(java.lang.String columnLabel,
java.lang.Object x,
int scaleOrLength)
Updates the designated column with an
Object value. |
void |
ResultSet.updateRef(int columnIndex,
Ref x)
Updates the designated column with a
java.sql.Ref value. |
void |
ResultSet.updateRef(java.lang.String columnLabel,
Ref x)
Updates the designated column with a
java.sql.Ref value. |
void |
ResultSet.updateRow()
Updates the underlying database with the new contents of the
current row of this
ResultSet object. |
void |
ResultSet.updateRowId(int columnIndex,
RowId x)
Updates the designated column with a
RowId value. |
void |
ResultSet.updateRowId(java.lang.String columnLabel,
RowId x)
Updates the designated column with a
RowId value. |
boolean |
DatabaseMetaData.updatesAreDetected(int type)
Retrieves whether or not a visible row update can be detected by
calling the method
ResultSet.rowUpdated . |
void |
ResultSet.updateShort(int columnIndex,
short x)
Updates the designated column with a
short value. |
void |
ResultSet.updateShort(java.lang.String columnLabel,
short x)
Updates the designated column with a
short value. |
void |
ResultSet.updateSQLXML(int columnIndex,
SQLXML xmlObject)
Updates the designated column with a
java.sql.SQLXML value. |
void |
ResultSet.updateSQLXML(java.lang.String columnLabel,
SQLXML xmlObject)
Updates the designated column with a
java.sql.SQLXML value. |
void |
ResultSet.updateString(int columnIndex,
java.lang.String x)
Updates the designated column with a
String value. |
void |
ResultSet.updateString(java.lang.String columnLabel,
java.lang.String x)
Updates the designated column with a
String value. |
void |
ResultSet.updateTime(int columnIndex,
Time x)
Updates the designated column with a
java.sql.Time value. |
void |
ResultSet.updateTime(java.lang.String columnLabel,
Time x)
Updates the designated column with a
java.sql.Time value. |
void |
ResultSet.updateTimestamp(int columnIndex,
Timestamp x)
Updates the designated column with a
java.sql.Timestamp
value. |
void |
ResultSet.updateTimestamp(java.lang.String columnLabel,
Timestamp x)
Updates the designated column with a
java.sql.Timestamp
value. |
boolean |
DatabaseMetaData.usesLocalFilePerTable()
Retrieves whether this database uses a file for each table.
|
boolean |
DatabaseMetaData.usesLocalFiles()
Retrieves whether this database stores tables in a local file.
|
boolean |
SQLInput.wasNull()
Retrieves whether the last value read was SQL
NULL . |
boolean |
ResultSet.wasNull()
Reports whether
the last column read had a value of SQL
NULL . |
boolean |
CallableStatement.wasNull()
Retrieves whether the last OUT parameter read had the value of
SQL
NULL . |
void |
SQLOutput.writeArray(Array x)
Writes an SQL
ARRAY value to the stream. |
void |
SQLOutput.writeAsciiStream(java.io.InputStream x)
Writes the next attribute to the stream as a stream of ASCII characters.
|
void |
SQLOutput.writeBigDecimal(java.math.BigDecimal x)
Writes the next attribute to the stream as a java.math.BigDecimal object.
|
void |
SQLOutput.writeBinaryStream(java.io.InputStream x)
Writes the next attribute to the stream as a stream of uninterpreted
bytes.
|
void |
SQLOutput.writeBlob(Blob x)
Writes an SQL
BLOB value to the stream. |
void |
SQLOutput.writeBoolean(boolean x)
Writes the next attribute to the stream as a Java boolean.
|
void |
SQLOutput.writeByte(byte x)
Writes the next attribute to the stream as a Java byte.
|
void |
SQLOutput.writeBytes(byte[] x)
Writes the next attribute to the stream as an array of bytes.
|
void |
SQLOutput.writeCharacterStream(java.io.Reader x)
Writes the next attribute to the stream as a stream of Unicode characters.
|
void |
SQLOutput.writeClob(Clob x)
Writes an SQL
CLOB value to the stream. |
void |
SQLOutput.writeDate(Date x)
Writes the next attribute to the stream as a java.sql.Date object.
|
void |
SQLOutput.writeDouble(double x)
Writes the next attribute to the stream as a Java double.
|
void |
SQLOutput.writeFloat(float x)
Writes the next attribute to the stream as a Java float.
|
void |
SQLOutput.writeInt(int x)
Writes the next attribute to the stream as a Java int.
|
void |
SQLOutput.writeLong(long x)
Writes the next attribute to the stream as a Java long.
|
void |
SQLOutput.writeNClob(NClob x)
Writes an SQL
NCLOB value to the stream. |
void |
SQLOutput.writeNString(java.lang.String x)
Writes the next attribute to the stream as a
String
in the Java programming language. |
void |
SQLOutput.writeObject(SQLData x)
Writes to the stream the data contained in the given
SQLData object. |
void |
SQLOutput.writeRef(Ref x)
Writes an SQL
REF value to the stream. |
void |
SQLOutput.writeRowId(RowId x)
Writes an SQL
ROWID value to the stream. |
void |
SQLOutput.writeShort(short x)
Writes the next attribute to the stream as a Java short.
|
void |
SQLData.writeSQL(SQLOutput stream)
Writes this object to the given SQL data stream, converting it back to
its SQL value in the data source.
|
void |
SQLOutput.writeSQLXML(SQLXML x)
Writes an SQL
XML value to the stream. |
void |
SQLOutput.writeString(java.lang.String x)
Writes the next attribute to the stream as a
String
in the Java programming language. |
void |
SQLOutput.writeStruct(Struct x)
Writes an SQL structured type value to the stream.
|
void |
SQLOutput.writeTime(Time x)
Writes the next attribute to the stream as a java.sql.Time object.
|
void |
SQLOutput.writeTimestamp(Timestamp x)
Writes the next attribute to the stream as a java.sql.Timestamp object.
|
void |
SQLOutput.writeURL(java.net.URL x)
Writes a SQL
DATALINK value to the stream. |
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.