JSR 221 Maintenance Release 4.3
A B C D E F G H I J K L M N O P R S T U V W X 

A

ARRAY - java.sql.JDBCType
Identifies the generic SQL type ARRAY.
Array - Interface in java.sql
The mapping in the Java programming language for the SQL type ARRAY.
ARRAY - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type ARRAY.
attributeNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values might not be allowed.
attributeNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values are definitely allowed.
attributeNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that whether NULL values are allowed is not known.
abort(Executor) - Method in interface java.sql.Connection
Terminates an open connection.
absolute(int) - Method in interface java.sql.ResultSet
Moves the cursor to the given row number in this ResultSet object.
acceptsURL(String) - Method in interface java.sql.Driver
Retrieves whether the driver thinks that it can open a connection to the given URL.
addBatch() - Method in interface java.sql.PreparedStatement
Adds a set of parameters to this PreparedStatement object's batch of commands.
addBatch(String) - Method in interface java.sql.Statement
Adds the given SQL command to the current list of commands for this Statement object.
addConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Registers the given event listener so that it will be notified when an event occurs on this PooledConnection object.
addRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
Registers the given listener so that it will be notified of events that occur on this RowSet object.
addStatementEventListener(StatementEventListener) - Method in interface javax.sql.PooledConnection
Registers a StatementEventListener with this PooledConnection object.
after(Timestamp) - Method in class java.sql.Timestamp
Indicates whether this Timestamp object is later than the given Timestamp object.
afterLast() - Method in interface java.sql.ResultSet
Moves the cursor to the end of this ResultSet object, just after the last row.
allProceduresAreCallable() - Method in interface java.sql.DatabaseMetaData
Retrieves whether the current user can call all the procedures returned by the method getProcedures.
allTablesAreSelectable() - Method in interface java.sql.DatabaseMetaData
Retrieves whether the current user can use all the tables returned by the method getTables in a SELECT statement.
autoCommitFailureClosesAllResultSets() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a SQLException while autoCommit is true indicates that all open ResultSets are closed, even ones that are holdable.

B

BatchUpdateException - Exception in java.sql
The subclass of SQLException thrown when an error occurs during a batch update operation.
BIGINT - java.sql.JDBCType
Identifies the generic SQL type BIGINT.
BINARY - java.sql.JDBCType
Identifies the generic SQL type BINARY.
BIT - java.sql.JDBCType
Identifies the generic SQL type BIT.
BLOB - java.sql.JDBCType
Identifies the generic SQL type BLOB.
BOOLEAN - java.sql.JDBCType
Identifies the generic SQL type BOOLEAN.
Blob - Interface in java.sql
The representation (mapping) in the Java™ programming language of an SQL BLOB value.
bestRowNotPseudo - Static variable in interface java.sql.DatabaseMetaData
Indicates that the best row identifier is NOT a pseudo column.
bestRowPseudo - Static variable in interface java.sql.DatabaseMetaData
Indicates that the best row identifier is a pseudo column.
bestRowSession - Static variable in interface java.sql.DatabaseMetaData
Indicates that the scope of the best row identifier is the remainder of the current session.
bestRowTemporary - Static variable in interface java.sql.DatabaseMetaData
Indicates that the scope of the best row identifier is very temporary, lasting only while the row is being used.
bestRowTransaction - Static variable in interface java.sql.DatabaseMetaData
Indicates that the scope of the best row identifier is the remainder of the current transaction.
bestRowUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that the best row identifier may or may not be a pseudo column.
BIGINT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIGINT.
BINARY - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BINARY.
BIT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BIT.
BLOB - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BLOB.
BOOLEAN - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type BOOLEAN.
BatchUpdateException() - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object.
BatchUpdateException(int[]) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given updateCounts.
BatchUpdateException(int[], Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given cause and updateCounts.
BatchUpdateException(String, int[]) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason and updateCounts.
BatchUpdateException(String, int[], Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, cause and updateCounts.
BatchUpdateException(String, String, int[]) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, SQLState and updateCounts.
BatchUpdateException(String, String, int[], Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, SQLState,cause, and updateCounts.
BatchUpdateException(String, String, int, int[]) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, SQLState, vendorCode and updateCounts.
BatchUpdateException(String, String, int, int[], Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, SQLState, vendorCode cause and updateCounts.
BatchUpdateException(String, String, int, long[], Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given reason, SQLState, vendorCode cause and updateCounts.
BatchUpdateException(Throwable) - Constructor for exception java.sql.BatchUpdateException
Constructs a BatchUpdateException object initialized with a given cause.
before(Timestamp) - Method in class java.sql.Timestamp
Indicates whether this Timestamp object is earlier than the given Timestamp object.
beforeFirst() - Method in interface java.sql.ResultSet
Moves the cursor to the front of this ResultSet object, just before the first row.
beginRequest() - Method in interface java.sql.Connection
Hints to the driver that a request, an independent unit of work, is beginning on this connection.
build() - Method in interface java.sql.ConnectionBuilder
Returns an instance of the object defined by this builder.
build() - Method in interface java.sql.ShardingKeyBuilder
Returns an instance of the object defined by this builder.
build() - Method in interface javax.sql.PooledConnectionBuilder
Returns an instance of the object defined by this builder.
build() - Method in interface javax.sql.XAConnectionBuilder
Returns an instance of the object defined by this builder.

C

ConnectionEvent - Class in javax.sql
An Event object that provides information about the source of a connection-related event.
ClientInfoStatus - Enum in java.sql
Enumeration for status of the reason that a property could not be set via a call to Connection.setClientInfo
CHAR - java.sql.JDBCType
Identifies the generic SQL type CHAR.
CLOB - java.sql.JDBCType
Identifies the generic SQL type CLOB.
CallableStatement - Interface in java.sql
The interface used to execute SQL stored procedures.
Clob - Interface in java.sql
The mapping in the Java™ programming language for the SQL CLOB type.
CommonDataSource - Interface in javax.sql
Interface that defines the methods which are common between DataSource, XADataSource and ConnectionPoolDataSource.
Connection - Interface in java.sql
A connection (session) with a specific database.
ConnectionBuilder - Interface in java.sql
A builder created from a DataSource object, used to establish a connection to the database that the data source object represents.
ConnectionEventListener - Interface in javax.sql
An object that registers to be notified of events generated by a PooledConnection object.
ConnectionPoolDataSource - Interface in javax.sql
A factory for PooledConnection objects.
CHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CHAR.
choices - Variable in class java.sql.DriverPropertyInfo
An array of possible values if the value for the field DriverPropertyInfo.value may be selected from a particular set of values; otherwise null.
CLOB - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type CLOB.
CLOSE_ALL_RESULTS - Static variable in interface java.sql.Statement
The constant indicating that all ResultSet objects that have previously been kept open should be closed when calling getMoreResults.
CLOSE_CURRENT_RESULT - Static variable in interface java.sql.Statement
The constant indicating that the current ResultSet object should be closed when calling getMoreResults.
CLOSE_CURSORS_AT_COMMIT - Static variable in interface java.sql.ResultSet
The constant indicating that open ResultSet objects with this holdability will be closed when the current transaction is committed.
columnNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column might not allow NULL values.
columnNoNulls - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that a column does not allow NULL values.
columnNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column definitely allows NULL values.
columnNullable - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that a column allows NULL values.
columnNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that the nullability of columns is unknown.
columnNullableUnknown - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that the nullability of a column's values is unknown.
CONCUR_READ_ONLY - Static variable in interface java.sql.ResultSet
The constant indicating the concurrency mode for a ResultSet object that may NOT be updated.
CONCUR_UPDATABLE - Static variable in interface java.sql.ResultSet
The constant indicating the concurrency mode for a ResultSet object that may be updated.
ConnectionEvent(PooledConnection) - Constructor for class javax.sql.ConnectionEvent
Constructs a ConnectionEvent object initialized with the given PooledConnection object.
ConnectionEvent(PooledConnection, SQLException) - Constructor for class javax.sql.ConnectionEvent
Constructs a ConnectionEvent object initialized with the given PooledConnection object and SQLException object.
cancel() - Method in interface java.sql.Statement
Cancels this Statement object if both the DBMS and driver support aborting an SQL statement.
cancelRowUpdates() - Method in interface java.sql.ResultSet
Cancels the updates made to the current row in this ResultSet object.
clearBatch() - Method in interface java.sql.Statement
Empties this Statement object's current list of SQL commands.
clearParameters() - Method in interface java.sql.PreparedStatement
Clears the current parameter values immediately.
clearParameters() - Method in interface javax.sql.RowSet
Clears the parameters set for this RowSet object's command.
clearWarnings() - Method in interface java.sql.Connection
Clears all warnings reported for this Connection object.
clearWarnings() - Method in interface java.sql.ResultSet
Clears all warnings reported on this ResultSet object.
clearWarnings() - Method in interface java.sql.Statement
Clears all the warnings reported on this Statement object.
close() - Method in interface java.sql.Connection
Releases this Connection object's database and JDBC resources immediately instead of waiting for them to be automatically released.
close() - Method in interface java.sql.ResultSet
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in interface java.sql.Statement
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
close() - Method in interface javax.sql.PooledConnection
Closes the physical connection that this PooledConnection object represents.
closeOnCompletion() - Method in interface java.sql.Statement
Specifies that this Statement will be closed when all its dependent result sets are closed.
commit() - Method in interface java.sql.Connection
Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by this Connection object.
compareTo(Timestamp) - Method in class java.sql.Timestamp
Compares this Timestamp object to the given Timestamp object.
compareTo(Date) - Method in class java.sql.Timestamp
Compares this Timestamp object to the given Date object.
connect(String, Properties) - Method in interface java.sql.Driver
Attempts to make a database connection to the given URL.
connectionClosed(ConnectionEvent) - Method in interface javax.sql.ConnectionEventListener
Notifies this ConnectionEventListener that the application has called the method close on its representation of a pooled connection.
connectionErrorOccurred(ConnectionEvent) - Method in interface javax.sql.ConnectionEventListener
Notifies this ConnectionEventListener that a fatal error has occurred and the pooled connection can no longer be used.
createArrayOf(String, Object[]) - Method in interface java.sql.Connection
Factory method for creating Array objects.
createBlob() - Method in interface java.sql.Connection
Constructs an object that implements the Blob interface.
createClob() - Method in interface java.sql.Connection
Constructs an object that implements the Clob interface.
createConnectionBuilder() - Method in interface javax.sql.DataSource
Create a new ConnectionBuilder instance
createNClob() - Method in interface java.sql.Connection
Constructs an object that implements the NClob interface.
createPooledConnectionBuilder() - Method in interface javax.sql.ConnectionPoolDataSource
Creates a new PooledConnectionBuilder instance
createShardingKeyBuilder() - Method in interface javax.sql.CommonDataSource
Creates a new ShardingKeyBuilder instance
createSQLXML() - Method in interface java.sql.Connection
Constructs an object that implements the SQLXML interface.
createStatement() - Method in interface java.sql.Connection
Creates a Statement object for sending SQL statements to the database.
createStatement(int, int) - Method in interface java.sql.Connection
Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
createStatement(int, int, int) - Method in interface java.sql.Connection
Creates a Statement object that will generate ResultSet objects with the given type, concurrency, and holdability.
createStruct(String, Object[]) - Method in interface java.sql.Connection
Factory method for creating Struct objects.
createXAConnectionBuilder() - Method in interface javax.sql.XADataSource
Creates a new XAConnectionBuilder instance
cursorMoved(RowSetEvent) - Method in interface javax.sql.RowSetListener
Notifies registered listeners that a RowSet object's cursor has moved.

D

DataTruncation - Exception in java.sql
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 exceeded MaxFieldSize.
Date - Class in java.sql
A thin wrapper around a millisecond value that allows JDBC to identify this as an SQL DATE value.
DriverManager - Class in java.sql
The basic service for managing a set of JDBC drivers.
DriverPropertyInfo - Class in java.sql
Driver properties for making a connection.
DATALINK - java.sql.JDBCType
Identifies the generic SQL type DATALINK.
DATE - java.sql.JDBCType
Identifies the generic SQL type DATE.
DECIMAL - java.sql.JDBCType
Identifies the generic SQL type DECIMAL.
DISTINCT - java.sql.JDBCType
Identifies the generic SQL type DISTINCT.
DOUBLE - java.sql.JDBCType
Identifies the generic SQL type DOUBLE.
DatabaseMetaData - Interface in java.sql
Comprehensive information about the database as a whole.
DataSource - Interface in javax.sql
A factory for connections to the physical data source that this DataSource object represents.
Driver - Interface in java.sql
The interface that every driver class must implement.
DriverAction - Interface in java.sql
An interface that must be implemented when a Driver wants to be notified by DriverManager.
DATALINK - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DATALINK.
DATE - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DATE.
DECIMAL - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DECIMAL.
description - Variable in class java.sql.DriverPropertyInfo
A brief description of the property, which may be null.
DISTINCT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DISTINCT.
DOUBLE - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type DOUBLE.
DataTruncation(int, boolean, boolean, int, int) - Constructor for exception java.sql.DataTruncation
Creates a DataTruncation object with the SQLState initialized to 01004 when read is set to true and 22001 when read is set to false, the reason set to "Data truncation", the vendor code set to 0, and the other fields set to the given values.
DataTruncation(int, boolean, boolean, int, int, Throwable) - Constructor for exception java.sql.DataTruncation
Creates a DataTruncation object with the SQLState initialized to 01004 when read is set to true and 22001 when read is set to false, the reason set to "Data truncation", the vendor code set to 0, and the other fields set to the given values.
Date(int, int, int) - Constructor for class java.sql.Date
Deprecated.
instead use the constructor Date(long date)
Date(long) - Constructor for class java.sql.Date
Constructs a Date object using the given milliseconds time value.
DriverPropertyInfo(String, String) - Constructor for class java.sql.DriverPropertyInfo
Constructs a DriverPropertyInfo object with a given name and value.
dataDefinitionCausesTransactionCommit() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a data definition statement within a transaction forces the transaction to commit.
dataDefinitionIgnoredInTransactions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database ignores a data definition statement within a transaction.
deleteRow() - Method in interface java.sql.ResultSet
Deletes the current row from this ResultSet object and from the underlying database.
deletesAreDetected(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether or not a visible row delete can be detected by calling the method ResultSet.rowDeleted.
deregister() - Method in interface java.sql.DriverAction
Method called by DriverManager.deregisterDriver(Driver) to notify the JDBC driver that it was de-registered.
deregisterDriver(Driver) - Static method in class java.sql.DriverManager
Removes the specified driver from the DriverManager's list of registered drivers.
doesMaxRowSizeIncludeBlobs() - Method in interface java.sql.DatabaseMetaData
Retrieves whether the return value for the method getMaxRowSize includes the SQL data types LONGVARCHAR and LONGVARBINARY.
drivers() - Static method in class java.sql.DriverManager
Retrieves a Stream with all of the currently loaded JDBC drivers to which the current caller has access.

E

EXECUTE_FAILED - Static variable in interface java.sql.Statement
The constant indicating that an error occurred while executing a batch statement.
endRequest() - Method in interface java.sql.Connection
Hints to the driver that a request, an independent unit of work, has completed.
enquoteIdentifier(String, boolean) - Method in interface java.sql.Statement
Returns a SQL identifier.
enquoteLiteral(String) - Method in interface java.sql.Statement
Returns a String enclosed in single quotes.
enquoteNCharLiteral(String) - Method in interface java.sql.Statement
Returns a String representing a National Character Set Literal enclosed in single quotes and prefixed with a upper case letter N.
equals(Object) - Method in interface java.sql.RowId
Compares this RowId to the specified object.
equals(Object) - Method in class java.sql.Timestamp
Tests to see if this Timestamp object is equal to the given object.
equals(Timestamp) - Method in class java.sql.Timestamp
Tests to see if this Timestamp object is equal to the given Timestamp object.
execute() - Method in interface java.sql.PreparedStatement
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
execute() - Method in interface javax.sql.RowSet
Fills this RowSet object with data.
execute(String) - Method in interface java.sql.Statement
Executes the given SQL statement, which may return multiple results.
execute(String, int) - Method in interface java.sql.Statement
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.
execute(String, int[]) - Method in interface java.sql.Statement
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.
execute(String, String[]) - Method in interface java.sql.Statement
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.
executeBatch() - Method in interface java.sql.Statement
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
executeLargeBatch() - Method in interface java.sql.Statement
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
executeLargeUpdate() - Method in interface java.sql.PreparedStatement
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.
executeLargeUpdate(String) - Method in interface java.sql.Statement
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.
executeLargeUpdate(String, int) - Method in interface java.sql.Statement
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.
executeLargeUpdate(String, int[]) - Method in interface java.sql.Statement
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.
executeLargeUpdate(String, String[]) - Method in interface java.sql.Statement
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.
executeQuery() - Method in interface java.sql.PreparedStatement
Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.
executeQuery(String) - Method in interface java.sql.Statement
Executes the given SQL statement, which returns a single ResultSet object.
executeUpdate() - Method in interface java.sql.PreparedStatement
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.
executeUpdate(String) - Method in interface java.sql.Statement
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.
executeUpdate(String, int) - Method in interface java.sql.Statement
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.
executeUpdate(String, int[]) - Method in interface java.sql.Statement
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.
executeUpdate(String, String[]) - Method in interface java.sql.Statement
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.

F

FLOAT - java.sql.JDBCType
Identifies the generic SQL type FLOAT.
FETCH_FORWARD - Static variable in interface java.sql.ResultSet
The constant indicating that the rows in a result set will be processed in a forward direction; first-to-last.
FETCH_REVERSE - Static variable in interface java.sql.ResultSet
The constant indicating that the rows in a result set will be processed in a reverse direction; last-to-first.
FETCH_UNKNOWN - Static variable in interface java.sql.ResultSet
The constant indicating that the order in which rows in a result set will be processed is unknown.
FLOAT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type FLOAT.
functionColumnIn - Static variable in interface java.sql.DatabaseMetaData
Indicates that the parameter or column is an IN parameter.
functionColumnInOut - Static variable in interface java.sql.DatabaseMetaData
Indicates that the parameter or column is an INOUT parameter.
functionColumnOut - Static variable in interface java.sql.DatabaseMetaData
Indicates that the parameter or column is an OUT parameter.
functionColumnResult - Static variable in interface java.sql.DatabaseMetaData
Indicates that the parameter or column is a column in a result set.
functionColumnUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that type of the parameter or column is unknown.
functionNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values are not allowed.
functionNoTable - Static variable in interface java.sql.DatabaseMetaData
Indicates that the function does not return a table.
functionNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values are allowed.
functionNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that whether NULL values are allowed is unknown.
functionResultUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that it is not known whether the function returns a result or a table.
functionReturn - Static variable in interface java.sql.DatabaseMetaData
Indicates that the parameter or column is a return value.
functionReturnsTable - Static variable in interface java.sql.DatabaseMetaData
Indicates that the function returns a table.
findColumn(String) - Method in interface java.sql.ResultSet
Maps the given ResultSet column label to its ResultSet column index.
first() - Method in interface java.sql.ResultSet
Moves the cursor to the first row in this ResultSet object.
free() - Method in interface java.sql.Array
This method frees the Array object and releases the resources that it holds.
free() - Method in interface java.sql.Blob
This method frees the Blob object and releases the resources that it holds.
free() - Method in interface java.sql.Clob
This method releases the resources that the Clob object holds.
free() - Method in interface java.sql.SQLXML
This method closes this object and releases the resources that it held.
from(Instant) - Static method in class java.sql.Timestamp
Obtains an instance of Timestamp from an Instant object.

G

generatedKeyAlwaysReturned() - Method in interface java.sql.DatabaseMetaData
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.
getArray() - Method in interface java.sql.Array
Retrieves the contents of the SQL ARRAY value designated by this Array object in the form of an array in the Java programming language.
getArray(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC ARRAY parameter as an Array object in the Java programming language.
getArray(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
getArray(long, int) - Method in interface java.sql.Array
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.
getArray(long, int, Map<String, Class<?>>) - Method in interface java.sql.Array
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.
getArray(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
getArray(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Array object in the Java programming language.
getArray(Map<String, Class<?>>) - Method in interface java.sql.Array
Retrieves the contents of the SQL ARRAY value designated by this Array object.
getAsciiStream() - Method in interface java.sql.Clob
Retrieves the CLOB value designated by this Clob object as an ascii stream.
getAsciiStream(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
getAsciiStream(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of ASCII characters.
getAttributes() - Method in interface java.sql.Struct
Produces the ordered values of the attributes of the SQL structured type that this Struct object represents.
getAttributes(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
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.
getAttributes(Map<String, Class<?>>) - Method in interface java.sql.Struct
Produces the ordered values of the attributes of the SQL structured type that this Struct object represents.
getAutoCommit() - Method in interface java.sql.Connection
Retrieves the current auto-commit mode for this Connection object.
getBaseType() - Method in interface java.sql.Array
Retrieves the JDBC type of the elements in the array designated by this Array object.
getBaseTypeName() - Method in interface java.sql.Array
Retrieves the SQL type name of the elements in the array designated by this Array object.
getBaseTypeName() - Method in interface java.sql.Ref
Retrieves the fully-qualified SQL name of the SQL structured type that this Ref object references.
getBestRowIdentifier(String, String, String, int, boolean) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of a table's optimal set of columns that uniquely identifies a row.
getBigDecimal(int) - Method in interface java.sql.CallableStatement
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.
getBigDecimal(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
getBigDecimal(int, int) - Method in interface java.sql.CallableStatement
Deprecated.
use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName)
getBigDecimal(int, int) - Method in interface java.sql.ResultSet
Deprecated.
Use getBigDecimal(int columnIndex) or getBigDecimal(String columnLabel)
getBigDecimal(String) - Method in interface java.sql.CallableStatement
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.
getBigDecimal(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.math.BigDecimal with full precision.
getBigDecimal(String, int) - Method in interface java.sql.ResultSet
Deprecated.
Use getBigDecimal(int columnIndex) or getBigDecimal(String columnLabel)
getBinaryStream() - Method in interface java.sql.Blob
Retrieves the BLOB value designated by this Blob instance as a stream.
getBinaryStream() - Method in interface java.sql.SQLXML
Retrieves the XML value designated by this SQLXML instance as a stream.
getBinaryStream(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
getBinaryStream(long, long) - Method in interface java.sql.Blob
Returns an InputStream object that contains a partial Blob value, starting with the byte specified by pos, which is length bytes in length.
getBinaryStream(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
getBlob(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC BLOB parameter as a Blob object in the Java programming language.
getBlob(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
getBlob(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BLOB parameter as a Blob object in the Java programming language.
getBlob(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
getBoolean(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC BIT or BOOLEAN parameter as a boolean in the Java programming language.
getBoolean(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
getBoolean(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BIT or BOOLEAN parameter as a boolean in the Java programming language.
getBoolean(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
getByte(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TINYINT parameter as a byte in the Java programming language.
getByte(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
getByte(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TINYINT parameter as a byte in the Java programming language.
getByte(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
getBytes() - Method in interface java.sql.RowId
Returns an array of bytes representing the value of the SQL ROWID designated by this java.sql.RowId object.
getBytes(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
getBytes(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
getBytes(long, int) - Method in interface java.sql.Blob
Retrieves all or part of the BLOB value that this Blob object represents, as an array of bytes.
getBytes(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BINARY or VARBINARY parameter as an array of byte values in the Java programming language.
getBytes(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
getCatalog() - Method in interface java.sql.Connection
Retrieves this Connection object's current catalog name.
getCatalogName(int) - Method in interface java.sql.ResultSetMetaData
Gets the designated column's table's catalog name.
getCatalogs() - Method in interface java.sql.DatabaseMetaData
Retrieves the catalog names available in this database.
getCatalogSeparator() - Method in interface java.sql.DatabaseMetaData
Retrieves the String that this database uses as the separator between a catalog and table name.
getCatalogTerm() - Method in interface java.sql.DatabaseMetaData
Retrieves the database vendor's preferred term for "catalog".
getCharacterStream() - Method in interface java.sql.Clob
Retrieves the CLOB value designated by this Clob object as a java.io.Reader object (or as a stream of characters).
getCharacterStream() - Method in interface java.sql.SQLXML
Retrieves the XML value designated by this SQLXML instance as a java.io.Reader object.
getCharacterStream(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
getCharacterStream(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getCharacterStream(long, long) - Method in interface java.sql.Clob
Returns a Reader object that contains a partial Clob value, starting with the character specified by pos, which is length characters in length.
getCharacterStream(String) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
getCharacterStream(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getClientInfo() - Method in interface java.sql.Connection
Returns a list containing the name and current value of each client info property supported by the driver.
getClientInfo(String) - Method in interface java.sql.Connection
Returns the value of the client info property specified by name.
getClientInfoProperties() - Method in interface java.sql.DatabaseMetaData
Retrieves a list of the client info properties that the driver supports.
getClob(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC CLOB parameter as a java.sql.Clob object in the Java programming language.
getClob(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
getClob(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC CLOB parameter as a java.sql.Clob object in the Java programming language.
getClob(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
getColumnClassName(int) - Method in interface java.sql.ResultSetMetaData
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.
getColumnCount() - Method in interface java.sql.ResultSetMetaData
Returns the number of columns in this ResultSet object.
getColumnDisplaySize(int) - Method in interface java.sql.ResultSetMetaData
Indicates the designated column's normal maximum width in characters.
getColumnLabel(int) - Method in interface java.sql.ResultSetMetaData
Gets the designated column's suggested title for use in printouts and displays.
getColumnName(int) - Method in interface java.sql.ResultSetMetaData
Get the designated column's name.
getColumnPrivileges(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the access rights for a table's columns.
getColumns(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of table columns available in the specified catalog.
getColumnType(int) - Method in interface java.sql.ResultSetMetaData
Retrieves the designated column's SQL type.
getColumnTypeName(int) - Method in interface java.sql.ResultSetMetaData
Retrieves the designated column's database-specific type name.
getCommand() - Method in interface javax.sql.RowSet
Retrieves this RowSet object's command property.
getConcurrency() - Method in interface java.sql.ResultSet
Retrieves the concurrency mode of this ResultSet object.
getConnection() - Method in interface java.sql.DatabaseMetaData
Retrieves the connection that produced this metadata object.
getConnection() - Method in interface java.sql.Statement
Retrieves the Connection object that produced this Statement object.
getConnection() - Method in interface javax.sql.DataSource
Attempts to establish a connection with the data source that this DataSource object represents.
getConnection() - Method in interface javax.sql.PooledConnection
Creates and returns a Connection object that is a handle for the physical connection that this PooledConnection object represents.
getConnection() - Method in interface javax.sql.RowSetInternal
Retrieves the Connection object that was passed to this RowSet object.
getConnection(String) - Static method in class java.sql.DriverManager
Attempts to establish a connection to the given database URL.
getConnection(String, String) - Method in interface javax.sql.DataSource
Attempts to establish a connection with the data source that this DataSource object represents.
getConnection(String, String, String) - Static method in class java.sql.DriverManager
Attempts to establish a connection to the given database URL.
getConnection(String, Properties) - Static method in class java.sql.DriverManager
Attempts to establish a connection to the given database URL.
getCrossReference(String, String, String, String, String, String) - Method in interface java.sql.DatabaseMetaData
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).
getCursorName() - Method in interface java.sql.ResultSet
Retrieves the name of the SQL cursor used by this ResultSet object.
getDatabaseMajorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the major version number of the underlying database.
getDatabaseMinorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the minor version number of the underlying database.
getDatabaseProductName() - Method in interface java.sql.DatabaseMetaData
Retrieves the name of this database product.
getDatabaseProductVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the version number of this database product.
getDataSize() - Method in exception java.sql.DataTruncation
Gets the number of bytes of data that should have been transferred.
getDataSourceName() - Method in interface javax.sql.RowSet
Retrieves the logical name that identifies the data source for this RowSet object.
getDate() - Method in class java.sql.Time
Deprecated. 
getDate(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object.
getDate(int) - Method in interface java.sql.ResultSet
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.
getDate(int, Calendar) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
getDate(int, Calendar) - Method in interface java.sql.ResultSet
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.
getDate(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object.
getDate(String) - Method in interface java.sql.ResultSet
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.
getDate(String, Calendar) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object, using the given Calendar object to construct the date.
getDate(String, Calendar) - Method in interface java.sql.ResultSet
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.
getDay() - Method in class java.sql.Time
Deprecated. 
getDefaultTransactionIsolation() - Method in interface java.sql.DatabaseMetaData
Retrieves this database's default transaction isolation level.
getDouble(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC DOUBLE parameter as a double in the Java programming language.
getDouble(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
getDouble(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DOUBLE parameter as a double in the Java programming language.
getDouble(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
getDriver(String) - Static method in class java.sql.DriverManager
Attempts to locate a driver that understands the given URL.
getDriverMajorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves this JDBC driver's major version number.
getDriverMinorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves this JDBC driver's minor version number.
getDriverName() - Method in interface java.sql.DatabaseMetaData
Retrieves the name of this JDBC driver.
getDrivers() - Static method in class java.sql.DriverManager
Retrieves an Enumeration with all of the currently loaded JDBC drivers to which the current caller has access.
getDriverVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the version number of this JDBC driver as a String.
getErrorCode() - Method in exception java.sql.SQLException
Retrieves the vendor-specific exception code for this SQLException object.
getEscapeProcessing() - Method in interface javax.sql.RowSet
Retrieves whether escape processing is enabled for this RowSet object.
getExportedKeys(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the foreign key columns that reference the given table's primary key columns (the foreign keys exported by a table).
getExtraNameCharacters() - Method in interface java.sql.DatabaseMetaData
Retrieves all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, A-Z, 0-9 and _).
getFailedProperties() - Method in exception java.sql.SQLClientInfoException
Returns the list of client info properties that could not be set.
getFetchDirection() - Method in interface java.sql.ResultSet
Retrieves the fetch direction for this ResultSet object.
getFetchDirection() - Method in interface java.sql.Statement
Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
getFetchSize() - Method in interface java.sql.ResultSet
Retrieves the fetch size for this ResultSet object.
getFetchSize() - Method in interface java.sql.Statement
Retrieves the number of result set rows that is the default fetch size for ResultSet objects generated from this Statement object.
getFloat(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC FLOAT parameter as a float in the Java programming language.
getFloat(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
getFloat(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
getFloat(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
getFunctionColumns(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the given catalog's system or user function parameters and return type.
getFunctions(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the system and user functions available in the given catalog.
getGeneratedKeys() - Method in interface java.sql.Statement
Retrieves any auto-generated keys created as a result of executing this Statement object.
getHoldability() - Method in interface java.sql.Connection
Retrieves the current holdability of ResultSet objects created using this Connection object.
getHoldability() - Method in interface java.sql.ResultSet
Retrieves the holdability of this ResultSet object
getHours() - Method in class java.sql.Date
Deprecated. 
getIdentifierQuoteString() - Method in interface java.sql.DatabaseMetaData
Retrieves the string used to quote SQL identifiers.
getImportedKeys(String, String, String) - Method in interface java.sql.DatabaseMetaData
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).
getIndex() - Method in exception java.sql.DataTruncation
Retrieves the index of the column or parameter that was truncated.
getIndexInfo(String, String, String, boolean, boolean) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the given table's indices and statistics.
getInt(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC INTEGER parameter as an int in the Java programming language.
getInt(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
getInt(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC INTEGER parameter as an int in the Java programming language.
getInt(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an int in the Java programming language.
getJDBCMajorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the major JDBC version number for this driver.
getJDBCMinorVersion() - Method in interface java.sql.DatabaseMetaData
Retrieves the minor JDBC version number for this driver.
getLargeMaxRows() - Method in interface java.sql.Statement
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
getLargeUpdateCount() - Method in interface java.sql.Statement
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
getLargeUpdateCounts() - Method in exception java.sql.BatchUpdateException
Retrieves the update count for each update statement in the batch update that executed successfully before this exception occurred.
getLoginTimeout() - Static method in class java.sql.DriverManager
Gets the maximum time in seconds that a driver can wait when attempting to log in to a database.
getLoginTimeout() - Method in interface javax.sql.CommonDataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - Method in interface javax.sql.ConnectionPoolDataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - Method in interface javax.sql.DataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLoginTimeout() - Method in interface javax.sql.XADataSource
Gets the maximum time in seconds that this data source can wait while attempting to connect to a database.
getLogStream() - Static method in class java.sql.DriverManager
Deprecated.
Use getLogWriter
getLogWriter() - Static method in class java.sql.DriverManager
Retrieves the log writer.
getLogWriter() - Method in interface javax.sql.CommonDataSource
Retrieves the log writer for this DataSource object.
getLogWriter() - Method in interface javax.sql.ConnectionPoolDataSource
Retrieves the log writer for this DataSource object.
getLogWriter() - Method in interface javax.sql.DataSource
Retrieves the log writer for this DataSource object.
getLogWriter() - Method in interface javax.sql.XADataSource
Retrieves the log writer for this DataSource object.
getLong(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC BIGINT parameter as a long in the Java programming language.
getLong(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
getLong(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
getLong(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
getMajorVersion() - Method in interface java.sql.Driver
Retrieves the driver's major version number.
getMaxBinaryLiteralLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of hex characters this database allows in an inline binary literal.
getMaxCatalogNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters that this database allows in a catalog name.
getMaxCharLiteralLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters this database allows for a character literal.
getMaxColumnNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters this database allows for a column name.
getMaxColumnsInGroupBy() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of columns this database allows in a GROUP BY clause.
getMaxColumnsInIndex() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of columns this database allows in an index.
getMaxColumnsInOrderBy() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of columns this database allows in an ORDER BY clause.
getMaxColumnsInSelect() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of columns this database allows in a SELECT list.
getMaxColumnsInTable() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of columns this database allows in a table.
getMaxConnections() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of concurrent connections to this database that are possible.
getMaxCursorNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters that this database allows in a cursor name.
getMaxFieldSize() - Method in interface java.sql.Statement
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.
getMaxFieldSize() - Method in interface javax.sql.RowSet
Retrieves the maximum number of bytes that may be returned for certain column values.
getMaxIndexLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of bytes this database allows for an index, including all of the parts of the index.
getMaxLogicalLobSize() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of bytes this database allows for the logical size for a LOB.
getMaxProcedureNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters that this database allows in a procedure name.
getMaxRows() - Method in interface java.sql.Statement
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
getMaxRows() - Method in interface javax.sql.RowSet
Retrieves the maximum number of rows that this RowSet object can contain.
getMaxRowSize() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of bytes this database allows in a single row.
getMaxSchemaNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters that this database allows in a schema name.
getMaxStatementLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters this database allows in an SQL statement.
getMaxStatements() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of active statements to this database that can be open at the same time.
getMaxTableNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters this database allows in a table name.
getMaxTablesInSelect() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of tables this database allows in a SELECT statement.
getMaxUserNameLength() - Method in interface java.sql.DatabaseMetaData
Retrieves the maximum number of characters this database allows in a user name.
getMetaData() - Method in interface java.sql.Connection
Retrieves a DatabaseMetaData object that contains metadata about the database to which this Connection object represents a connection.
getMetaData() - Method in interface java.sql.PreparedStatement
Retrieves a ResultSetMetaData object that contains information about the columns of the ResultSet object that will be returned when this PreparedStatement object is executed.
getMetaData() - Method in interface java.sql.ResultSet
Retrieves the number, types and properties of this ResultSet object's columns.
getMinorVersion() - Method in interface java.sql.Driver
Gets the driver's minor version number.
getMinutes() - Method in class java.sql.Date
Deprecated. 
getMonth() - Method in class java.sql.Time
Deprecated. 
getMoreResults() - Method in interface java.sql.Statement
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.
getMoreResults(int) - Method in interface java.sql.Statement
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.
getName() - Method in enum java.sql.JDBCType
Returns the SQLType name that represents a SQL data type.
getName() - Method in interface java.sql.SQLType
Returns the SQLType name that represents a SQL data type.
getNanos() - Method in class java.sql.Timestamp
Gets this Timestamp object's nanos value.
getNCharacterStream(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
getNCharacterStream(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getNCharacterStream(String) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as a java.io.Reader object in the Java programming language.
getNCharacterStream(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
getNClob(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC NCLOB parameter as a java.sql.NClob object in the Java programming language.
getNClob(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.
getNClob(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC NCLOB parameter as a java.sql.NClob object in the Java programming language.
getNClob(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a NClob object in the Java programming language.
getNetworkTimeout() - Method in interface java.sql.Connection
Retrieves the number of milliseconds the driver will wait for a database request to complete.
getNextException() - Method in exception java.sql.SQLException
Retrieves the exception chained to this SQLException object by setNextException(SQLException ex).
getNextWarning() - Method in exception java.sql.SQLWarning
Retrieves the warning chained to this SQLWarning object by setNextWarning.
getNString(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated NCHAR, NVARCHAR or LONGNVARCHAR parameter as a String in the Java programming language.
getNString(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getNString(String) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated NCHAR, NVARCHAR or LONGNVARCHAR parameter as a String in the Java programming language.
getNString(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getNumericFunctions() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of math functions available with this database.
getObject() - Method in interface java.sql.Ref
Retrieves the SQL structured type instance referenced by this Ref object.
getObject(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as an Object in the Java programming language.
getObject(int) - Method in interface java.sql.ResultSet
Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(int, Class<T>) - Method in interface java.sql.CallableStatement
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.
getObject(int, Class<T>) - Method in interface java.sql.ResultSet
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.
getObject(int, Map<String, Class<?>>) - Method in interface java.sql.CallableStatement
Returns an object representing the value of OUT parameter parameterIndex and uses map for the custom mapping of the parameter value.
getObject(int, Map<String, Class<?>>) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a parameter as an Object in the Java programming language.
getObject(String) - Method in interface java.sql.ResultSet
Gets the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(String, Class<T>) - Method in interface java.sql.CallableStatement
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.
getObject(String, Class<T>) - Method in interface java.sql.ResultSet
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.
getObject(String, Map<String, Class<?>>) - Method in interface java.sql.CallableStatement
Returns an object representing the value of OUT parameter parameterName and uses map for the custom mapping of the parameter value.
getObject(String, Map<String, Class<?>>) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as an Object in the Java programming language.
getObject(Map<String, Class<?>>) - Method in interface java.sql.Ref
Retrieves the referenced object and maps it to a Java type using the given type map.
getOriginal() - Method in interface javax.sql.RowSetInternal
Retrieves a ResultSet object containing the original value of this RowSet object.
getOriginalRow() - Method in interface javax.sql.RowSetInternal
Retrieves a ResultSet object containing the original value of the current row only.
getParameter() - Method in exception java.sql.DataTruncation
Indicates whether the value truncated was a parameter value or a column value.
getParameterClassName(int) - Method in interface java.sql.ParameterMetaData
Retrieves the fully-qualified name of the Java class whose instances should be passed to the method PreparedStatement.setObject.
getParameterCount() - Method in interface java.sql.ParameterMetaData
Retrieves the number of parameters in the PreparedStatement object for which this ParameterMetaData object contains information.
getParameterMetaData() - Method in interface java.sql.PreparedStatement
Retrieves the number, types and properties of this PreparedStatement object's parameters.
getParameterMode(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's mode.
getParameterType(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's SQL type.
getParameterTypeName(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's database-specific type name.
getParams() - Method in interface javax.sql.RowSetInternal
Retrieves the parameters that have been set for this RowSet object's command.
getParentLogger() - Method in interface java.sql.Driver
Return the parent Logger of all the Loggers used by this driver.
getParentLogger() - Method in interface javax.sql.CommonDataSource
Return the parent Logger of all the Loggers used by this data source.
getPassword() - Method in interface javax.sql.RowSet
Retrieves the password used to create a database connection.
getPooledConnection() - Method in interface javax.sql.ConnectionPoolDataSource
Attempts to establish a physical database connection that can be used as a pooled connection.
getPooledConnection(String, String) - Method in interface javax.sql.ConnectionPoolDataSource
Attempts to establish a physical database connection that can be used as a pooled connection.
getPrecision(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's specified column size.
getPrecision(int) - Method in interface java.sql.ResultSetMetaData
Get the designated column's specified column size.
getPrimaryKeys(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the given table's primary key columns.
getProcedureColumns(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the given catalog's stored procedure parameter and result columns.
getProcedures(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the stored procedures available in the given catalog.
getProcedureTerm() - Method in interface java.sql.DatabaseMetaData
Retrieves the database vendor's preferred term for "procedure".
getPropertyInfo(String, Properties) - Method in interface java.sql.Driver
Gets information about the possible properties for this driver.
getPseudoColumns(String, String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the pseudo or hidden columns available in a given table within the specified catalog and schema.
getQueryTimeout() - Method in interface java.sql.Statement
Retrieves the number of seconds the driver will wait for a Statement object to execute.
getQueryTimeout() - Method in interface javax.sql.RowSet
Retrieves the maximum number of seconds the driver will wait for a statement to execute.
getRead() - Method in exception java.sql.DataTruncation
Indicates whether or not the value was truncated on a read.
getRef(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
getRef(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
getRef(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC REF(<structured-type>) parameter as a Ref object in the Java programming language.
getRef(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a Ref object in the Java programming language.
getResultSet() - Method in interface java.sql.Array
Retrieves a result set that contains the elements of the SQL ARRAY value designated by this Array object.
getResultSet() - Method in interface java.sql.Statement
Retrieves the current result as a ResultSet object.
getResultSet(long, int) - Method in interface java.sql.Array
Retrieves a result set holding the elements of the subarray that starts at index index and contains up to count successive elements.
getResultSet(long, int, Map<String, Class<?>>) - Method in interface java.sql.Array
Retrieves a result set holding the elements of the subarray that starts at index index and contains up to count successive elements.
getResultSet(Map<String, Class<?>>) - Method in interface java.sql.Array
Retrieves a result set that contains the elements of the SQL ARRAY value designated by this Array object.
getResultSetConcurrency() - Method in interface java.sql.Statement
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
getResultSetHoldability() - Method in interface java.sql.DatabaseMetaData
Retrieves this database's default holdability for ResultSet objects.
getResultSetHoldability() - Method in interface java.sql.Statement
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
getResultSetType() - Method in interface java.sql.Statement
Retrieves the result set type for ResultSet objects generated by this Statement object.
getRow() - Method in interface java.sql.ResultSet
Retrieves the current row number.
getRowId(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC ROWID parameter as a java.sql.RowId object.
getRowId(int) - Method in interface java.sql.ResultSet
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.
getRowId(String) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC ROWID parameter as a java.sql.RowId object.
getRowId(String) - Method in interface java.sql.ResultSet
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.
getRowIdLifetime() - Method in interface java.sql.DatabaseMetaData
Indicates whether or not this data source supports the SQL ROWID type, and if so the lifetime for which a RowId object remains valid.
getSavepointId() - Method in interface java.sql.Savepoint
Retrieves the generated ID for the savepoint that this Savepoint object represents.
getSavepointName() - Method in interface java.sql.Savepoint
Retrieves the name of the savepoint that this Savepoint object represents.
getScale(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's number of digits to right of the decimal point.
getScale(int) - Method in interface java.sql.ResultSetMetaData
Gets the designated column's number of digits to right of the decimal point.
getSchema() - Method in interface java.sql.Connection
Retrieves this Connection object's current schema name.
getSchemaName(int) - Method in interface java.sql.ResultSetMetaData
Get the designated column's table's schema.
getSchemas() - Method in interface java.sql.DatabaseMetaData
Retrieves the schema names available in this database.
getSchemas(String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves the schema names available in this database.
getSchemaTerm() - Method in interface java.sql.DatabaseMetaData
Retrieves the database vendor's preferred term for "schema".
getSearchStringEscape() - Method in interface java.sql.DatabaseMetaData
Retrieves the string that can be used to escape wildcard characters.
getSeconds() - Method in class java.sql.Date
Deprecated. 
getShort(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC SMALLINT parameter as a short in the Java programming language.
getShort(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
getShort(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
getShort(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
getSource(Class<T>) - Method in interface java.sql.SQLXML
Returns a Source for reading the XML value designated by this SQLXML instance.
getSQLException() - Method in class javax.sql.ConnectionEvent
Retrieves the SQLException for this ConnectionEvent object.
getSQLException() - Method in class javax.sql.StatementEvent
Returns the SQLException the driver is about to throw
getSQLKeywords() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of all of this database's SQL keywords that are NOT also SQL:2003 keywords.
getSQLState() - Method in exception java.sql.SQLException
Retrieves the SQLState for this SQLException object.
getSQLStateType() - Method in interface java.sql.DatabaseMetaData
Indicates whether the SQLSTATE returned by SQLException.getSQLState is X/Open (now known as Open Group) SQL CLI or SQL:2003.
getSQLTypeName() - Method in interface java.sql.SQLData
Returns the fully-qualified name of the SQL user-defined type that this object represents.
getSQLTypeName() - Method in interface java.sql.Struct
Retrieves the SQL type name of the SQL structured type that this Struct object represents.
getSQLXML(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated SQL XML parameter as a java.sql.SQLXML object in the Java programming language.
getSQLXML(int) - Method in interface java.sql.ResultSet
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.
getSQLXML(String) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated SQL XML parameter as a java.sql.SQLXML object in the Java programming language.
getSQLXML(String) - Method in interface java.sql.ResultSet
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.
getStatement() - Method in interface java.sql.ResultSet
Retrieves the Statement object that produced this ResultSet object.
getStatement() - Method in class javax.sql.StatementEvent
Returns the PreparedStatement that is being closed or is invalid
getString() - Method in interface java.sql.SQLXML
Returns a string representation of the XML value designated by this SQLXML instance.
getString(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
getString(int) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getString(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC CHAR, VARCHAR, or LONGVARCHAR parameter as a String in the Java programming language.
getString(String) - Method in interface java.sql.ResultSet
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
getStringFunctions() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of string functions available with this database.
getSubString(long, int) - Method in interface java.sql.Clob
Retrieves a copy of the specified substring in the CLOB value designated by this Clob object.
getSuperTables(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the table hierarchies defined in a particular schema in this database.
getSuperTypes(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the user-defined type (UDT) hierarchies defined in a particular schema in this database.
getSystemFunctions() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of system functions available with this database.
getTableName(int) - Method in interface java.sql.ResultSetMetaData
Gets the designated column's table name.
getTablePrivileges(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the access rights for each table available in a catalog.
getTables(String, String, String, String[]) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the tables available in the given catalog.
getTableTypes() - Method in interface java.sql.DatabaseMetaData
Retrieves the table types available in this database.
getTime() - Method in class java.sql.Timestamp
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this Timestamp object.
getTime(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object.
getTime(int) - Method in interface java.sql.ResultSet
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.
getTime(int, Calendar) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
getTime(int, Calendar) - Method in interface java.sql.ResultSet
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.
getTime(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object.
getTime(String) - Method in interface java.sql.ResultSet
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.
getTime(String, Calendar) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object, using the given Calendar object to construct the time.
getTime(String, Calendar) - Method in interface java.sql.ResultSet
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.
getTimeDateFunctions() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of the time and date functions available with this database.
getTimestamp(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
getTimestamp(int) - Method in interface java.sql.ResultSet
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.
getTimestamp(int, Calendar) - Method in interface java.sql.CallableStatement
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.
getTimestamp(int, Calendar) - Method in interface java.sql.ResultSet
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.
getTimestamp(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object.
getTimestamp(String) - Method in interface java.sql.ResultSet
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.
getTimestamp(String, Calendar) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.Timestamp object, using the given Calendar object to construct the Timestamp object.
getTimestamp(String, Calendar) - Method in interface java.sql.ResultSet
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.
getTransactionIsolation() - Method in interface java.sql.Connection
Retrieves this Connection object's current transaction isolation level.
getTransactionIsolation() - Method in interface javax.sql.RowSet
Retrieves the transaction isolation level set for this RowSet object.
getTransferSize() - Method in exception java.sql.DataTruncation
Gets the number of bytes of data actually transferred.
getType() - Method in interface java.sql.ResultSet
Retrieves the type of this ResultSet object.
getTypeInfo() - Method in interface java.sql.DatabaseMetaData
Retrieves a description of all the data types supported by this database.
getTypeMap() - Method in interface java.sql.Connection
Retrieves the Map object associated with this Connection object.
getTypeMap() - Method in interface javax.sql.RowSet
Retrieves the Map object associated with this RowSet object, which specifies the custom mapping of SQL user-defined types, if any.
getUDTs(String, String, String, int[]) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of the user-defined types (UDTs) defined in a particular schema.
getUnicodeStream(int) - Method in interface java.sql.ResultSet
Deprecated.
use getCharacterStream in place of getUnicodeStream
getUnicodeStream(String) - Method in interface java.sql.ResultSet
Deprecated.
use getCharacterStream instead
getUpdateCount() - Method in interface java.sql.Statement
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
getUpdateCounts() - Method in exception java.sql.BatchUpdateException
Retrieves the update count for each update statement in the batch update that executed successfully before this exception occurred.
getUrl() - Method in interface javax.sql.RowSet
Retrieves the url property this RowSet object will use to create a connection if it uses the DriverManager instead of a DataSource object to establish the connection.
getURL() - Method in interface java.sql.DatabaseMetaData
Retrieves the URL for this DBMS.
getURL(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC DATALINK parameter as a java.net.URL object.
getURL(int) - Method in interface java.sql.ResultSet
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.
getURL(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DATALINK parameter as a java.net.URL object.
getURL(String) - Method in interface java.sql.ResultSet
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.
getUsername() - Method in interface javax.sql.RowSet
Retrieves the username used to create a database connection for this RowSet object.
getUserName() - Method in interface java.sql.DatabaseMetaData
Retrieves the user name as known to this database.
getVendor() - Method in enum java.sql.JDBCType
Returns the name of the vendor that supports this data type.
getVendor() - Method in interface java.sql.SQLType
Returns the name of the vendor that supports this data type.
getVendorTypeNumber() - Method in enum java.sql.JDBCType
Returns the vendor specific type number for the data type.
getVendorTypeNumber() - Method in interface java.sql.SQLType
Returns the vendor specific type number for the data type.
getVersionColumns(String, String, String) - Method in interface java.sql.DatabaseMetaData
Retrieves a description of a table's columns that are automatically updated when any value in a row is updated.
getWarnings() - Method in interface java.sql.Connection
Retrieves the first warning reported by calls on this Connection object.
getWarnings() - Method in interface java.sql.ResultSet
Retrieves the first warning reported by calls on this ResultSet object.
getWarnings() - Method in interface java.sql.Statement
Retrieves the first warning reported by calls on this Statement object.
getXAConnection() - Method in interface javax.sql.XADataSource
Attempts to establish a physical database connection that can be used in a distributed transaction.
getXAConnection(String, String) - Method in interface javax.sql.XADataSource
Attempts to establish a physical database connection, using the given user name and password.
getXAResource() - Method in interface javax.sql.XAConnection
Retrieves an XAResource object that the transaction manager will use to manage this XAConnection object's participation in a distributed transaction.
getYear() - Method in class java.sql.Time
Deprecated. 

H

HOLD_CURSORS_OVER_COMMIT - Static variable in interface java.sql.ResultSet
The constant indicating that open ResultSet objects with this holdability will remain open when the current transaction is committed.
hashCode() - Method in interface java.sql.RowId
Returns a hash code value of this RowId object.
hashCode() - Method in class java.sql.Timestamp
The hashCode method uses the underlying java.util.Date implementation and therefore does not include nanos in its computation.

I

INTEGER - java.sql.JDBCType
Identifies the generic SQL type INTEGER.
importedKeyCascade - Static variable in interface java.sql.DatabaseMetaData
For the column UPDATE_RULE, indicates that when the primary key is updated, the foreign key (imported key) is changed to agree with it.
importedKeyInitiallyDeferred - Static variable in interface java.sql.DatabaseMetaData
Indicates deferrability.
importedKeyInitiallyImmediate - Static variable in interface java.sql.DatabaseMetaData
Indicates deferrability.
importedKeyNoAction - Static variable in interface java.sql.DatabaseMetaData
For the columns UPDATE_RULE and DELETE_RULE, indicates that if the primary key has been imported, it cannot be updated or deleted.
importedKeyNotDeferrable - Static variable in interface java.sql.DatabaseMetaData
Indicates deferrability.
importedKeyRestrict - Static variable in interface java.sql.DatabaseMetaData
For the column UPDATE_RULE, indicates that a primary key may not be updated if it has been imported by another table as a foreign key.
importedKeySetDefault - Static variable in interface java.sql.DatabaseMetaData
For the columns UPDATE_RULE and DELETE_RULE, indicates that if the primary key is updated or deleted, the foreign key (imported key) is set to the default value.
importedKeySetNull - Static variable in interface java.sql.DatabaseMetaData
For the columns UPDATE_RULE and DELETE_RULE, indicates that when the primary key is updated or deleted, the foreign key (imported key) is changed to NULL.
INTEGER - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type INTEGER.
insertRow() - Method in interface java.sql.ResultSet
Inserts the contents of the insert row into this ResultSet object and into the database.
insertsAreDetected(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether or not a visible row insert can be detected by calling the method ResultSet.rowInserted.
isAfterLast() - Method in interface java.sql.ResultSet
Retrieves whether the cursor is after the last row in this ResultSet object.
isAutoIncrement(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether the designated column is automatically numbered.
isBeforeFirst() - Method in interface java.sql.ResultSet
Retrieves whether the cursor is before the first row in this ResultSet object.
isCaseSensitive(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether a column's case matters.
isCatalogAtStart() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog appears at the start of a fully qualified table name.
isClosed() - Method in interface java.sql.Connection
Retrieves whether this Connection object has been closed.
isClosed() - Method in interface java.sql.ResultSet
Retrieves whether this ResultSet object has been closed.
isClosed() - Method in interface java.sql.Statement
Retrieves whether this Statement object has been closed.
isCloseOnCompletion() - Method in interface java.sql.Statement
Returns a value indicating whether this Statement will be closed when all its dependent result sets are closed.
isCurrency(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether the designated column is a cash value.
isDefinitelyWritable(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether a write on the designated column will definitely succeed.
isFirst() - Method in interface java.sql.ResultSet
Retrieves whether the cursor is on the first row of this ResultSet object.
isLast() - Method in interface java.sql.ResultSet
Retrieves whether the cursor is on the last row of this ResultSet object.
isNullable(int) - Method in interface java.sql.ParameterMetaData
Retrieves whether null values are allowed in the designated parameter.
isNullable(int) - Method in interface java.sql.ResultSetMetaData
Indicates the nullability of values in the designated column.
isPoolable() - Method in interface java.sql.Statement
Returns a value indicating whether the Statement is poolable or not.
isReadOnly() - Method in interface java.sql.Connection
Retrieves whether this Connection object is in read-only mode.
isReadOnly() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database is in read-only mode.
isReadOnly() - Method in interface javax.sql.RowSet
Retrieves whether this RowSet object is read-only.
isReadOnly(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether the designated column is definitely not writable.
isSearchable(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether the designated column can be used in a where clause.
isSigned(int) - Method in interface java.sql.ParameterMetaData
Retrieves whether values for the designated parameter can be signed numbers.
isSigned(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether values in the designated column are signed numbers.
isSimpleIdentifier(String) - Method in interface java.sql.Statement
Retrieves whether identifier is a simple SQL identifier.
isValid(int) - Method in interface java.sql.Connection
Returns true if the connection has not been closed and is still valid.
isWrapperFor(Class<?>) - Method in interface java.sql.Wrapper
Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.
isWritable(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether it is possible for a write on the designated column to succeed.
iterator() - Method in exception java.sql.SQLException
Returns an iterator over the chained SQLExceptions.

J

java.sql - module java.sql
Defines the JDBC API.
java.sql - package java.sql
Provides the API for accessing and processing data stored in a data source (usually a relational database) using the Java™ programming language.
javax.sql - package javax.sql
Provides the API for server side data source access and processing from the Java™ programming language.
JDBCType - Enum in java.sql
Defines the constants that are used to identify generic SQL types, called JDBC types.
JAVA_OBJECT - java.sql.JDBCType
Indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.
JAVA_OBJECT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type JAVA_OBJECT.
jdbcCompliant() - Method in interface java.sql.Driver
Reports whether this driver is a genuine JDBC Compliant™ driver.

K

KEEP_CURRENT_RESULT - Static variable in interface java.sql.Statement
The constant indicating that the current ResultSet object should not be closed when calling getMoreResults.

L

LONGNVARCHAR - java.sql.JDBCType
Identifies the generic SQL type LONGNVARCHAR.
LONGVARBINARY - java.sql.JDBCType
Identifies the generic SQL type LONGVARBINARY.
LONGVARCHAR - java.sql.JDBCType
Identifies the generic SQL type LONGVARCHAR.
LONGNVARCHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGNVARCHAR.
LONGVARBINARY - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARBINARY.
LONGVARCHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type LONGVARCHAR.
last() - Method in interface java.sql.ResultSet
Moves the cursor to the last row in this ResultSet object.
length() - Method in interface java.sql.Blob
Returns the number of bytes in the BLOB value designated by this Blob object.
length() - Method in interface java.sql.Clob
Retrieves the number of characters in the CLOB value designated by this Clob object.
locatorsUpdateCopy() - Method in interface java.sql.DatabaseMetaData
Indicates whether updates made to a LOB are made on a copy or directly to the LOB.

M

moveToCurrentRow() - Method in interface java.sql.ResultSet
Moves the cursor to the remembered cursor position, usually the current row.
moveToInsertRow() - Method in interface java.sql.ResultSet
Moves the cursor to the insert row.

N

NCHAR - java.sql.JDBCType
Identifies the generic SQL type NCHAR.
NCLOB - java.sql.JDBCType
Identifies the generic SQL type NCLOB.
NO_USAGE_RESTRICTIONS - java.sql.PseudoColumnUsage
There are no restrictions on the usage of the pseudo/hidden columns.
NULL - java.sql.JDBCType
Identifies the generic SQL value NULL.
NUMERIC - java.sql.JDBCType
Identifies the generic SQL type NUMERIC.
NVARCHAR - java.sql.JDBCType
Identifies the generic SQL type NVARCHAR.
NClob - Interface in java.sql
The mapping in the Java™ programming language for the SQL NCLOB type.
name - Variable in class java.sql.DriverPropertyInfo
The name of the property.
NCHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NCHAR
NCLOB - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NCLOB.
NO_GENERATED_KEYS - Static variable in interface java.sql.Statement
The constant indicating that generated keys should not be made available for retrieval.
NULL - Static variable in class java.sql.Types
The constant in the Java programming language that identifies the generic SQL value NULL.
NUMERIC - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NUMERIC.
NVARCHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type NVARCHAR.
nativeSQL(String) - Method in interface java.sql.Connection
Converts the given SQL statement into the system's native SQL grammar.
next() - Method in interface java.sql.ResultSet
Moves the cursor forward one row from its current position.
nullPlusNonNullIsNull() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports concatenations between NULL and non-NULL values being NULL.
nullsAreSortedAtEnd() - Method in interface java.sql.DatabaseMetaData
Retrieves whether NULL values are sorted at the end regardless of sort order.
nullsAreSortedAtStart() - Method in interface java.sql.DatabaseMetaData
Retrieves whether NULL values are sorted at the start regardless of sort order.
nullsAreSortedHigh() - Method in interface java.sql.DatabaseMetaData
Retrieves whether NULL values are sorted high.
nullsAreSortedLow() - Method in interface java.sql.DatabaseMetaData
Retrieves whether NULL values are sorted low.

O

OTHER - java.sql.JDBCType
Indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.
OTHER - Static variable in class java.sql.Types
The constant in the Java programming language that indicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.
othersDeletesAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether deletes made by others are visible.
othersInsertsAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether inserts made by others are visible.
othersUpdatesAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether updates made by others are visible.
ownDeletesAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether a result set's own deletes are visible.
ownInsertsAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether a result set's own inserts are visible.
ownUpdatesAreVisible(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether for the given type of ResultSet object, the result set's own updates are visible.

P

PseudoColumnUsage - Enum in java.sql
Enumeration for pseudo/hidden column usage.
ParameterMetaData - Interface in java.sql
An object that can be used to get information about the types and properties for each parameter marker in a PreparedStatement object.
PooledConnection - Interface in javax.sql
An object that provides hooks for connection pool management.
PooledConnectionBuilder - Interface in javax.sql
A builder created from a ConnectionPoolDataSource object, used to establish a connection to the database that the data source object represents.
PreparedStatement - Interface in java.sql
An object that represents a precompiled SQL statement.
parameterModeIn - Static variable in interface java.sql.ParameterMetaData
The constant indicating that the parameter's mode is IN.
parameterModeInOut - Static variable in interface java.sql.ParameterMetaData
The constant indicating that the parameter's mode is INOUT.
parameterModeOut - Static variable in interface java.sql.ParameterMetaData
The constant indicating that the parameter's mode is OUT.
parameterModeUnknown - Static variable in interface java.sql.ParameterMetaData
The constant indicating that the mode of the parameter is unknown.
parameterNoNulls - Static variable in interface java.sql.ParameterMetaData
The constant indicating that a parameter will not allow NULL values.
parameterNullable - Static variable in interface java.sql.ParameterMetaData
The constant indicating that a parameter will allow NULL values.
parameterNullableUnknown - Static variable in interface java.sql.ParameterMetaData
The constant indicating that the nullability of a parameter is unknown.
procedureColumnIn - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column stores IN parameters.
procedureColumnInOut - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column stores INOUT parameters.
procedureColumnOut - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column stores OUT parameters.
procedureColumnResult - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column stores results.
procedureColumnReturn - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column stores return values.
procedureColumnUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that type of the column is unknown.
procedureNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values are not allowed.
procedureNoResult - Static variable in interface java.sql.DatabaseMetaData
Indicates that the procedure does not return a result.
procedureNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that NULL values are allowed.
procedureNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that whether NULL values are allowed is unknown.
procedureResultUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that it is not known whether the procedure returns a result.
procedureReturnsResult - Static variable in interface java.sql.DatabaseMetaData
Indicates that the procedure returns a result.
password(String) - Method in interface java.sql.ConnectionBuilder
Specifies the password to be used when creating a connection
password(String) - Method in interface javax.sql.PooledConnectionBuilder
Specifies the password to be used when creating a connection
password(String) - Method in interface javax.sql.XAConnectionBuilder
Specifies the password to be used when creating a connection
position(byte[], long) - Method in interface java.sql.Blob
Retrieves the byte position at which the specified byte array pattern begins within the BLOB value that this Blob object represents.
position(String, long) - Method in interface java.sql.Clob
Retrieves the character position at which the specified substring searchstr appears in the SQL CLOB value represented by this Clob object.
position(Blob, long) - Method in interface java.sql.Blob
Retrieves the byte position in the BLOB value designated by this Blob object at which pattern begins.
position(Clob, long) - Method in interface java.sql.Clob
Retrieves the character position at which the specified Clob object searchstr appears in this Clob object.
prepareCall(String) - Method in interface java.sql.Connection
Creates a CallableStatement object for calling database stored procedures.
prepareCall(String, int, int) - Method in interface java.sql.Connection
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
prepareCall(String, int, int, int) - Method in interface java.sql.Connection
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
prepareStatement(String) - Method in interface java.sql.Connection
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
prepareStatement(String, int) - Method in interface java.sql.Connection
Creates a default PreparedStatement object that has the capability to retrieve auto-generated keys.
prepareStatement(String, int[]) - Method in interface java.sql.Connection
Creates a default PreparedStatement object capable of returning the auto-generated keys designated by the given array.
prepareStatement(String, int, int) - Method in interface java.sql.Connection
Creates a PreparedStatement object that will generate ResultSet objects with the given type and concurrency.
prepareStatement(String, int, int, int) - Method in interface java.sql.Connection
Creates a PreparedStatement object that will generate ResultSet objects with the given type, concurrency, and holdability.
prepareStatement(String, String[]) - Method in interface java.sql.Connection
Creates a default PreparedStatement object capable of returning the auto-generated keys designated by the given array.
previous() - Method in interface java.sql.ResultSet
Moves the cursor to the previous row in this ResultSet object.
println(String) - Static method in class java.sql.DriverManager
Prints a message to the current JDBC log stream.

R

RowSetEvent - Class in javax.sql
An Event object generated when an event occurs to a RowSet object.
RowIdLifetime - Enum in java.sql
Enumeration for RowId life-time values.
REAL - java.sql.JDBCType
Identifies the generic SQL type REAL.
REASON_UNKNOWN - java.sql.ClientInfoStatus
The client info property could not be set for some unknown reason
REASON_UNKNOWN_PROPERTY - java.sql.ClientInfoStatus
The client info property name specified was not a recognized property name.
REASON_VALUE_INVALID - java.sql.ClientInfoStatus
The value specified for the client info property was not valid.
REASON_VALUE_TRUNCATED - java.sql.ClientInfoStatus
The value specified for the client info property was too large.
REF - java.sql.JDBCType
Identifies the generic SQL type REF.
REF_CURSOR - java.sql.JDBCType
Identifies the generic SQL type REF_CURSOR.
ROWID - java.sql.JDBCType
Identifies the SQL type ROWID.
ROWID_UNSUPPORTED - java.sql.RowIdLifetime
Indicates that this data source does not support the ROWID type.
ROWID_VALID_FOREVER - java.sql.RowIdLifetime
Indicates that the lifetime of a RowId from this data source is, effectively, unlimited.
ROWID_VALID_OTHER - java.sql.RowIdLifetime
Indicates that the lifetime of a RowId from this data source is indeterminate; but not one of ROWID_VALID_TRANSACTION, ROWID_VALID_SESSION, or, ROWID_VALID_FOREVER.
ROWID_VALID_SESSION - java.sql.RowIdLifetime
Indicates that the lifetime of a RowId from this data source is at least the containing session.
ROWID_VALID_TRANSACTION - java.sql.RowIdLifetime
Indicates that the lifetime of a RowId from this data source is at least the containing transaction.
Ref - Interface in java.sql
The mapping in the Java programming language of an SQL REF value, which is a reference to an SQL structured type value in the database.
ResultSet - Interface in java.sql
A table of data representing a database result set, which is usually generated by executing a statement that queries the database.
ResultSetMetaData - Interface in java.sql
An object that can be used to get information about the types and properties of the columns in a ResultSet object.
RowId - Interface in java.sql
The representation (mapping) in the Java programming language of an SQL ROWID value.
RowSet - Interface in javax.sql
The interface that adds support to the JDBC API for the JavaBeans™ component model.
RowSetInternal - Interface in javax.sql
The interface that a RowSet object implements in order to present itself to a RowSetReader or RowSetWriter object.
RowSetListener - Interface in javax.sql
An interface that must be implemented by a component that wants to be notified when a significant event happens in the life of a RowSet object.
RowSetMetaData - Interface in javax.sql
An object that contains information about the columns in a RowSet object.
RowSetReader - Interface in javax.sql
The facility that a disconnected RowSet object calls on to populate itself with rows of data.
RowSetWriter - Interface in javax.sql
An object that implements the RowSetWriter interface, called a writer.
REAL - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REAL.
REF - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REF.
REF_CURSOR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type REF CURSOR.
required - Variable in class java.sql.DriverPropertyInfo
The required field is true if a value must be supplied for this property during Driver.connect and false otherwise.
RETURN_GENERATED_KEYS - Static variable in interface java.sql.Statement
The constant indicating that generated keys should be made available for retrieval.
ROWID - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type ROWID
RowSetEvent(RowSet) - Constructor for class javax.sql.RowSetEvent
Constructs a RowSetEvent object initialized with the given RowSet object.
readArray() - Method in interface java.sql.SQLInput
Reads an SQL ARRAY value from the stream and returns it as an Array object in the Java programming language.
readAsciiStream() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a stream of ASCII characters.
readBigDecimal() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a java.math.BigDecimal object in the Java programming language.
readBinaryStream() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a stream of uninterpreted bytes.
readBlob() - Method in interface java.sql.SQLInput
Reads an SQL BLOB value from the stream and returns it as a Blob object in the Java programming language.
readBoolean() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a boolean in the Java programming language.
readByte() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a byte in the Java programming language.
readBytes() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as an array of bytes in the Java programming language.
readCharacterStream() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a stream of Unicode characters.
readClob() - Method in interface java.sql.SQLInput
Reads an SQL CLOB value from the stream and returns it as a Clob object in the Java programming language.
readData(RowSetInternal) - Method in interface javax.sql.RowSetReader
Reads the new contents of the calling RowSet object.
readDate() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a java.sql.Date object.
readDouble() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a double in the Java programming language.
readFloat() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a float in the Java programming language.
readInt() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as an int in the Java programming language.
readLong() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a long in the Java programming language.
readNClob() - Method in interface java.sql.SQLInput
Reads an SQL NCLOB value from the stream and returns it as a NClob object in the Java programming language.
readNString() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a String in the Java programming language.
readObject() - Method in interface java.sql.SQLInput
Reads the datum at the head of the stream and returns it as an Object in the Java programming language.
readObject(Class<T>) - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as an Object in the Java programming language.
readRef() - Method in interface java.sql.SQLInput
Reads an SQL REF value from the stream and returns it as a Ref object in the Java programming language.
readRowId() - Method in interface java.sql.SQLInput
Reads an SQL ROWID value from the stream and returns it as a RowId object in the Java programming language.
readShort() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a short in the Java programming language.
readSQL(SQLInput, String) - Method in interface java.sql.SQLData
Populates this object with data read from the database.
readSQLXML() - Method in interface java.sql.SQLInput
Reads an SQL XML value from the stream and returns it as a SQLXML object in the Java programming language.
readString() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a String in the Java programming language.
readTime() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a java.sql.Time object.
readTimestamp() - Method in interface java.sql.SQLInput
Reads the next attribute in the stream and returns it as a java.sql.Timestamp object.
readURL() - Method in interface java.sql.SQLInput
Reads an SQL DATALINK value from the stream and returns it as a java.net.URL object in the Java programming language.
refreshRow() - Method in interface java.sql.ResultSet
Refreshes the current row with its most recent value in the database.
registerDriver(Driver) - Static method in class java.sql.DriverManager
Registers the given driver with the DriverManager.
registerDriver(Driver, DriverAction) - Static method in class java.sql.DriverManager
Registers the given driver with the DriverManager.
registerOutParameter(int, int) - Method in interface java.sql.CallableStatement
Registers the OUT parameter in ordinal position parameterIndex to the JDBC type sqlType.
registerOutParameter(int, int, int) - Method in interface java.sql.CallableStatement
Registers the parameter in ordinal position parameterIndex to be of JDBC type sqlType.
registerOutParameter(int, int, String) - Method in interface java.sql.CallableStatement
Registers the designated output parameter.
registerOutParameter(int, SQLType) - Method in interface java.sql.CallableStatement
Registers the OUT parameter in ordinal position parameterIndex to the JDBC type sqlType.
registerOutParameter(int, SQLType, int) - Method in interface java.sql.CallableStatement
Registers the parameter in ordinal position parameterIndex to be of JDBC type sqlType.
registerOutParameter(int, SQLType, String) - Method in interface java.sql.CallableStatement
Registers the designated output parameter.
registerOutParameter(String, int) - Method in interface java.sql.CallableStatement
Registers the OUT parameter named parameterName to the JDBC type sqlType.
registerOutParameter(String, int, int) - Method in interface java.sql.CallableStatement
Registers the parameter named parameterName to be of JDBC type sqlType.
registerOutParameter(String, int, String) - Method in interface java.sql.CallableStatement
Registers the designated output parameter.
registerOutParameter(String, SQLType) - Method in interface java.sql.CallableStatement
Registers the OUT parameter named parameterName to the JDBC type sqlType.
registerOutParameter(String, SQLType, int) - Method in interface java.sql.CallableStatement
Registers the parameter named parameterName to be of JDBC type sqlType.
registerOutParameter(String, SQLType, String) - Method in interface java.sql.CallableStatement
Registers the designated output parameter.
relative(int) - Method in interface java.sql.ResultSet
Moves the cursor a relative number of rows, either positive or negative.
releaseSavepoint(Savepoint) - Method in interface java.sql.Connection
Removes the specified Savepoint and subsequent Savepoint objects from the current transaction.
removeConnectionEventListener(ConnectionEventListener) - Method in interface javax.sql.PooledConnection
Removes the given event listener from the list of components that will be notified when an event occurs on this PooledConnection object.
removeRowSetListener(RowSetListener) - Method in interface javax.sql.RowSet
Removes the specified listener from the list of components that will be notified when an event occurs on this RowSet object.
removeStatementEventListener(StatementEventListener) - Method in interface javax.sql.PooledConnection
Removes the specified StatementEventListener from the list of components that will be notified when the driver detects that a PreparedStatement has been closed or is invalid.
rollback() - Method in interface java.sql.Connection
Undoes all changes made in the current transaction and releases any database locks currently held by this Connection object.
rollback(Savepoint) - Method in interface java.sql.Connection
Undoes all changes made after the given Savepoint object was set.
rowChanged(RowSetEvent) - Method in interface javax.sql.RowSetListener
Notifies registered listeners that a RowSet object has had a change in one of its rows.
rowDeleted() - Method in interface java.sql.ResultSet
Retrieves whether a row has been deleted.
rowInserted() - Method in interface java.sql.ResultSet
Retrieves whether the current row has had an insertion.
rowSetChanged(RowSetEvent) - Method in interface javax.sql.RowSetListener
Notifies registered listeners that a RowSet object in the given RowSetEvent object has changed its entire contents.
rowUpdated() - Method in interface java.sql.ResultSet
Retrieves whether the current row has been updated.

S

SQLClientInfoException - Exception in java.sql
The subclass of SQLException is thrown when one or more client info properties could not be set on a Connection.
SQLDataException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '22', or under vendor-specified conditions.
SQLException - Exception in java.sql
An exception that provides information on a database access error or other errors.
SQLFeatureNotSupportedException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '0A' ( the value is 'zero' A).
SQLIntegrityConstraintViolationException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '23', or under vendor-specified conditions.
SQLInvalidAuthorizationSpecException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '28', or under vendor-specified conditions.
SQLNonTransientConnectionException - Exception in java.sql
The subclass of SQLException thrown for the SQLState class value '08', or under vendor-specified conditions.
SQLNonTransientException - Exception in java.sql
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.
SQLPermission - Class in java.sql
The permission for which the SecurityManager will check when code that is running an application with a SecurityManager enabled, calls the DriverManager.deregisterDriver method, DriverManager.setLogWriter method, DriverManager.setLogStream (deprecated) method, SyncFactory.setJNDIContext method, SyncFactory.setLogger method, Connection.setNetworkTimeout method, or the Connection.abort method.
SQLRecoverableException - Exception in java.sql
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.
SQLSyntaxErrorException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '42', or under vendor-specified conditions.
SQLTimeoutException - Exception in java.sql
The subclass of SQLException thrown when the timeout specified by Statement.setQueryTimeout, DriverManager.setLoginTimeout, DataSource.setLoginTimeout,XADataSource.setLoginTimeout has expired.
SQLTransactionRollbackException - Exception in java.sql
The subclass of SQLException thrown when the SQLState class value is '40', or under vendor-specified conditions.
SQLTransientConnectionException - Exception in java.sql
The subclass of SQLException for the SQLState class value '08', or under vendor-specified conditions.
SQLTransientException - Exception in java.sql
The subclass of SQLException is thrown in situations where a previously failed operation might be able to succeed when the operation is retried without any intervention by application-level functionality.
SQLWarning - Exception in java.sql
An exception that provides information on database access warnings.
StatementEvent - Class in javax.sql
A StatementEvent is sent to all StatementEventListeners which were registered with a PooledConnection.
SELECT_LIST_ONLY - java.sql.PseudoColumnUsage
The pseudo/hidden column may only be used in a SELECT list.
SMALLINT - java.sql.JDBCType
Identifies the generic SQL type SMALLINT.
SQLXML - java.sql.JDBCType
Identifies the generic SQL type SQLXML.
STRUCT - java.sql.JDBCType
Identifies the generic SQL type STRUCT.
Savepoint - Interface in java.sql
The representation of a savepoint, which is a point within the current transaction that can be referenced from the Connection.rollback method.
ShardingKey - Interface in java.sql
Interface used to indicate that this object represents a Sharding Key.
ShardingKeyBuilder - Interface in java.sql
A builder created from a DataSource or XADataSource object, used to create a ShardingKey with sub-keys of supported data types.
SQLData - Interface in java.sql
The interface used for the custom mapping of an SQL user-defined type (UDT) to a class in the Java programming language.
SQLInput - Interface in java.sql
An input stream that contains a stream of values representing an instance of an SQL structured type or an SQL distinct type.
SQLOutput - Interface in java.sql
The output stream for writing the attributes of a user-defined type back to the database.
SQLType - Interface in java.sql
An object that is used to identify a generic SQL type, called a JDBC type or a vendor specific data type.
SQLXML - Interface in java.sql
The mapping in the JavaTM programming language for the SQL XML type.
Statement - Interface in java.sql
The object used for executing a static SQL statement and returning the results it produces.
StatementEventListener - Interface in javax.sql
An object that registers to be notified of events that occur on PreparedStatements that are in the Statement pool.
Struct - Interface in java.sql
The standard mapping in the Java programming language for an SQL structured type.
SMALLINT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type SMALLINT.
sqlStateSQL - Static variable in interface java.sql.DatabaseMetaData
A possible return value for the method DatabaseMetaData.getSQLStateType which is used to indicate whether the value returned by the method SQLException.getSQLState is an SQLSTATE value.
sqlStateSQL99 - Static variable in interface java.sql.DatabaseMetaData
A possible return value for the method DatabaseMetaData.getSQLStateType which is used to indicate whether the value returned by the method SQLException.getSQLState is an SQL99 SQLSTATE value.
sqlStateXOpen - Static variable in interface java.sql.DatabaseMetaData
A possible return value for the method DatabaseMetaData.getSQLStateType which is used to indicate whether the value returned by the method SQLException.getSQLState is an X/Open (now know as Open Group) SQL CLI SQLSTATE value.
SQLXML - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type XML.
STRUCT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type STRUCT.
SUCCESS_NO_INFO - Static variable in interface java.sql.Statement
The constant indicating that a batch statement executed successfully but that no count of the number of rows it affected is available.
SQLClientInfoException() - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException Object.
SQLClientInfoException(String, String, int, Map<String, ClientInfoStatus>) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason, SQLState, vendorCode and failedProperties.
SQLClientInfoException(String, String, int, Map<String, ClientInfoStatus>, Throwable) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason, SQLState, cause, vendorCode and failedProperties.
SQLClientInfoException(String, String, Map<String, ClientInfoStatus>) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason, SQLState and failedProperties.
SQLClientInfoException(String, String, Map<String, ClientInfoStatus>, Throwable) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason, SQLState, cause and failedProperties.
SQLClientInfoException(String, Map<String, ClientInfoStatus>) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason and failedProperties.
SQLClientInfoException(String, Map<String, ClientInfoStatus>, Throwable) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given reason, cause and failedProperties.
SQLClientInfoException(Map<String, ClientInfoStatus>) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given failedProperties.
SQLClientInfoException(Map<String, ClientInfoStatus>, Throwable) - Constructor for exception java.sql.SQLClientInfoException
Constructs a SQLClientInfoException object initialized with a given cause and failedProperties.
SQLDataException() - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object.
SQLDataException(String) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason.
SQLDataException(String, String) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason and SQLState.
SQLDataException(String, String, int) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason, SQLState and vendorCode.
SQLDataException(String, String, int, Throwable) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason, SQLState, vendorCode and cause.
SQLDataException(String, String, Throwable) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason, SQLState and cause.
SQLDataException(String, Throwable) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given reason and cause.
SQLDataException(Throwable) - Constructor for exception java.sql.SQLDataException
Constructs a SQLDataException object with a given cause.
SQLException() - Constructor for exception java.sql.SQLException
Constructs a SQLException object.
SQLException(String) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason.
SQLException(String, String) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason and SQLState.
SQLException(String, String, int) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason, SQLState and vendorCode.
SQLException(String, String, int, Throwable) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason, SQLState, vendorCode and cause.
SQLException(String, String, Throwable) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason, SQLState and cause.
SQLException(String, Throwable) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given reason and cause.
SQLException(Throwable) - Constructor for exception java.sql.SQLException
Constructs a SQLException object with a given cause.
SQLFeatureNotSupportedException() - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object.
SQLFeatureNotSupportedException(String) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason.
SQLFeatureNotSupportedException(String, String) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason and SQLState.
SQLFeatureNotSupportedException(String, String, int) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason, SQLState and vendorCode.
SQLFeatureNotSupportedException(String, String, int, Throwable) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason, SQLState, vendorCode and cause.
SQLFeatureNotSupportedException(String, String, Throwable) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason, SQLState and cause.
SQLFeatureNotSupportedException(String, Throwable) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given reason and cause.
SQLFeatureNotSupportedException(Throwable) - Constructor for exception java.sql.SQLFeatureNotSupportedException
Constructs a SQLFeatureNotSupportedException object with a given cause.
SQLIntegrityConstraintViolationException() - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object.
SQLIntegrityConstraintViolationException(String) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException with a given reason.
SQLIntegrityConstraintViolationException(String, String) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object with a given reason and SQLState.
SQLIntegrityConstraintViolationException(String, String, int) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object with a given reason, SQLState and vendorCode.
SQLIntegrityConstraintViolationException(String, String, int, Throwable) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object with a given reason, SQLState, vendorCode and cause.
SQLIntegrityConstraintViolationException(String, String, Throwable) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object with a given reason, SQLState and cause.
SQLIntegrityConstraintViolationException(String, Throwable) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs a SQLIntegrityConstraintViolationException object with a given reason and cause.
SQLIntegrityConstraintViolationException(Throwable) - Constructor for exception java.sql.SQLIntegrityConstraintViolationException
Constructs an SQLIntegrityConstraintViolationException object with a given cause.
SQLInvalidAuthorizationSpecException() - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object.
SQLInvalidAuthorizationSpecException(String) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason.
SQLInvalidAuthorizationSpecException(String, String) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason and SQLState.
SQLInvalidAuthorizationSpecException(String, String, int) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason, SQLState and vendorCode.
SQLInvalidAuthorizationSpecException(String, String, int, Throwable) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason, SQLState, vendorCode and cause.
SQLInvalidAuthorizationSpecException(String, String, Throwable) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason, SQLState and cause.
SQLInvalidAuthorizationSpecException(String, Throwable) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given reason and cause.
SQLInvalidAuthorizationSpecException(Throwable) - Constructor for exception java.sql.SQLInvalidAuthorizationSpecException
Constructs a SQLInvalidAuthorizationSpecException object with a given cause.
SQLNonTransientConnectionException() - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object.
SQLNonTransientConnectionException(String) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given reason.
SQLNonTransientConnectionException(String, String) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given reason and SQLState.
SQLNonTransientConnectionException(String, String, int) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given reason, SQLState and vendorCode.
SQLNonTransientConnectionException(String, String, int, Throwable) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given reason, SQLState, vendorCode and cause.
SQLNonTransientConnectionException(String, String, Throwable) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given reason, SQLState and cause.
SQLNonTransientConnectionException(String, Throwable) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLTransientException object with a given reason and cause.
SQLNonTransientConnectionException(Throwable) - Constructor for exception java.sql.SQLNonTransientConnectionException
Constructs a SQLNonTransientConnectionException object with a given cause.
SQLNonTransientException() - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object.
SQLNonTransientException(String) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given reason.
SQLNonTransientException(String, String) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given reason and SQLState.
SQLNonTransientException(String, String, int) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given reason, SQLState and vendorCode.
SQLNonTransientException(String, String, int, Throwable) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given reason, SQLState, vendorCode and cause.
SQLNonTransientException(String, String, Throwable) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given reason, SQLState and cause.
SQLNonTransientException(String, Throwable) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLTransientException object with a given reason and cause.
SQLNonTransientException(Throwable) - Constructor for exception java.sql.SQLNonTransientException
Constructs a SQLNonTransientException object with a given cause.
SQLPermission(String) - Constructor for class java.sql.SQLPermission
Creates a new SQLPermission object with the specified name.
SQLPermission(String, String) - Constructor for class java.sql.SQLPermission
Creates a new SQLPermission object with the specified name.
SQLRecoverableException() - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object.
SQLRecoverableException(String) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason.
SQLRecoverableException(String, String) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason and SQLState.
SQLRecoverableException(String, String, int) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason, SQLState and vendorCode.
SQLRecoverableException(String, String, int, Throwable) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason, SQLState, vendorCode and cause.
SQLRecoverableException(String, String, Throwable) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason, SQLState and cause.
SQLRecoverableException(String, Throwable) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given reason and cause.
SQLRecoverableException(Throwable) - Constructor for exception java.sql.SQLRecoverableException
Constructs a SQLRecoverableException object with a given cause.
SQLSyntaxErrorException() - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object.
SQLSyntaxErrorException(String) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason.
SQLSyntaxErrorException(String, String) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason and SQLState.
SQLSyntaxErrorException(String, String, int) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason, SQLState and vendorCode.
SQLSyntaxErrorException(String, String, int, Throwable) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason, SQLState, vendorCode and cause.
SQLSyntaxErrorException(String, String, Throwable) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason, SQLState and cause.
SQLSyntaxErrorException(String, Throwable) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given reason and cause.
SQLSyntaxErrorException(Throwable) - Constructor for exception java.sql.SQLSyntaxErrorException
Constructs a SQLSyntaxErrorException object with a given cause.
SQLTimeoutException() - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object.
SQLTimeoutException(String) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason.
SQLTimeoutException(String, String) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason and SQLState.
SQLTimeoutException(String, String, int) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason, SQLState and vendorCode.
SQLTimeoutException(String, String, int, Throwable) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason, SQLState, vendorCode and cause.
SQLTimeoutException(String, String, Throwable) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason, SQLState and cause.
SQLTimeoutException(String, Throwable) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given reason and cause.
SQLTimeoutException(Throwable) - Constructor for exception java.sql.SQLTimeoutException
Constructs a SQLTimeoutException object with a given cause.
SQLTransactionRollbackException() - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object.
SQLTransactionRollbackException(String) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason.
SQLTransactionRollbackException(String, String) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason and SQLState.
SQLTransactionRollbackException(String, String, int) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason, SQLState and vendorCode.
SQLTransactionRollbackException(String, String, int, Throwable) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason, SQLState, vendorCode and cause.
SQLTransactionRollbackException(String, String, Throwable) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason, SQLState and cause.
SQLTransactionRollbackException(String, Throwable) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given reason and cause.
SQLTransactionRollbackException(Throwable) - Constructor for exception java.sql.SQLTransactionRollbackException
Constructs a SQLTransactionRollbackException object with a given cause.
SQLTransientConnectionException() - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object.
SQLTransientConnectionException(String) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason.
SQLTransientConnectionException(String, String) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason and SQLState.
SQLTransientConnectionException(String, String, int) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason, SQLState and vendorCode.
SQLTransientConnectionException(String, String, int, Throwable) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason, SQLState, vendorCode and cause.
SQLTransientConnectionException(String, String, Throwable) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason, SQLState and cause.
SQLTransientConnectionException(String, Throwable) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given reason and cause.
SQLTransientConnectionException(Throwable) - Constructor for exception java.sql.SQLTransientConnectionException
Constructs a SQLTransientConnectionException object with a given cause.
SQLTransientException() - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object.
SQLTransientException(String) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason.
SQLTransientException(String, String) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason and SQLState.
SQLTransientException(String, String, int) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason, SQLState and vendorCode.
SQLTransientException(String, String, int, Throwable) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason, SQLState, vendorCode and cause.
SQLTransientException(String, String, Throwable) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason, SQLState and cause.
SQLTransientException(String, Throwable) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given reason and cause.
SQLTransientException(Throwable) - Constructor for exception java.sql.SQLTransientException
Constructs a SQLTransientException object with a given cause.
SQLWarning() - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object.
SQLWarning(String) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given reason.
SQLWarning(String, String) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given reason and SQLState.
SQLWarning(String, String, int) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given reason, SQLState and vendorCode.
SQLWarning(String, String, int, Throwable) - Constructor for exception java.sql.SQLWarning
Constructs aSQLWarning object with a given reason, SQLState, vendorCode and cause.
SQLWarning(String, String, Throwable) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given reason, SQLState and cause.
SQLWarning(String, Throwable) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given reason and cause.
SQLWarning(Throwable) - Constructor for exception java.sql.SQLWarning
Constructs a SQLWarning object with a given cause.
StatementEvent(PooledConnection, PreparedStatement) - Constructor for class javax.sql.StatementEvent
Constructs a StatementEvent with the specified PooledConnection and PreparedStatement.
StatementEvent(PooledConnection, PreparedStatement, SQLException) - Constructor for class javax.sql.StatementEvent
Constructs a StatementEvent with the specified PooledConnection, PreparedStatement and SQLException
setArray(int, Array) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Array object.
setArray(int, Array) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given Array value.
setAsciiStream(int, InputStream) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream.
setAsciiStream(int, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given input stream.
setAsciiStream(int, InputStream, int) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(int, InputStream, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.io.InputStream value.
setAsciiStream(int, InputStream, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(long) - Method in interface java.sql.Clob
Retrieves a stream to be used to write Ascii characters to the CLOB value that this Clob object represents, starting at position pos.
setAsciiStream(String, InputStream) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream.
setAsciiStream(String, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given input stream.
setAsciiStream(String, InputStream, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(String, InputStream, int) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAsciiStream(String, InputStream, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setAutoCommit(boolean) - Method in interface java.sql.Connection
Sets this connection's auto-commit mode to the given state.
setAutoIncrement(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column is automatically numbered, The default is for a RowSet object's columns not to be automatically numbered.
setBigDecimal(int, BigDecimal) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.math.BigDecimal value.
setBigDecimal(int, BigDecimal) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.math.BigDecimal value.
setBigDecimal(String, BigDecimal) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.math.BigDecimal value.
setBigDecimal(String, BigDecimal) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.math.BigDecimal value.
setBinaryStream() - Method in interface java.sql.SQLXML
Retrieves a stream that can be used to write the XML value that this SQLXML instance represents.
setBinaryStream(int, InputStream) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream.
setBinaryStream(int, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given input stream.
setBinaryStream(int, InputStream, int) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(int, InputStream, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.io.InputStream value.
setBinaryStream(int, InputStream, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(long) - Method in interface java.sql.Blob
Retrieves a stream that can be used to write to the BLOB value that this Blob object represents.
setBinaryStream(String, InputStream) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream.
setBinaryStream(String, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given input stream.
setBinaryStream(String, InputStream, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(String, InputStream, int) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBinaryStream(String, InputStream, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBlob(int, InputStream) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a InputStream object.
setBlob(int, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter to a InputStream object.
setBlob(int, InputStream, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a InputStream object.
setBlob(int, InputStream, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a InputStream object.
setBlob(int, Blob) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Blob object.
setBlob(int, Blob) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given Blob value.
setBlob(String, InputStream) - Method in interface java.sql.CallableStatement
Sets the designated parameter to an InputStream object.
setBlob(String, InputStream) - Method in interface javax.sql.RowSet
Sets the designated parameter to a InputStream object.
setBlob(String, InputStream, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to an InputStream object.
setBlob(String, InputStream, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a InputStream object.
setBlob(String, Blob) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Blob object.
setBlob(String, Blob) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Blob object.
setBoolean(int, boolean) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java boolean value.
setBoolean(int, boolean) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java boolean value.
setBoolean(String, boolean) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java boolean value.
setBoolean(String, boolean) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java boolean value.
setByte(int, byte) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java byte value.
setByte(int, byte) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java byte value.
setByte(String, byte) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java byte value.
setByte(String, byte) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java byte value.
setBytes(int, byte[]) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java array of bytes.
setBytes(int, byte[]) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java array of byte values.
setBytes(long, byte[]) - Method in interface java.sql.Blob
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.
setBytes(long, byte[], int, int) - Method in interface java.sql.Blob
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.
setBytes(String, byte[]) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java array of bytes.
setBytes(String, byte[]) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java array of bytes.
setCaseSensitive(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column is case sensitive.
setCatalog(String) - Method in interface java.sql.Connection
Sets the given catalog name in order to select a subspace of this Connection object's database in which to work.
setCatalogName(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's table's catalog name, if any, to the given String.
setCharacterStream() - Method in interface java.sql.SQLXML
Retrieves a stream to be used to write the XML value that this SQLXML instance represents.
setCharacterStream(int, Reader) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Reader object.
setCharacterStream(int, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Reader object.
setCharacterStream(int, Reader, int) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(int, Reader, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.io.Reader value.
setCharacterStream(int, Reader, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(long) - Method in interface java.sql.Clob
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.
setCharacterStream(String, Reader) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Reader object.
setCharacterStream(String, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Reader object.
setCharacterStream(String, Reader, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(String, Reader, int) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setCharacterStream(String, Reader, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setClientInfo(String, String) - Method in interface java.sql.Connection
Sets the value of the client info property specified by name to the value specified by value.
setClientInfo(Properties) - Method in interface java.sql.Connection
Sets the value of the connection's client info properties.
setClob(int, Reader) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setClob(int, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setClob(int, Reader, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setClob(int, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setClob(int, Clob) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Clob object.
setClob(int, Clob) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given Clob value.
setClob(String, Reader) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setClob(String, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setClob(String, Reader, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setClob(String, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setClob(String, Clob) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Clob object.
setClob(String, Clob) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Clob object.
setColumnCount(int) - Method in interface javax.sql.RowSetMetaData
Sets the number of columns in the RowSet object to the given number.
setColumnDisplaySize(int, int) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's normal maximum width in chars to the given int.
setColumnLabel(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the suggested column title for use in printouts and displays, if any, to the given String.
setColumnName(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the name of the designated column to the given String.
setColumnType(int, int) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's SQL type to the one given.
setColumnTypeName(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's type name that is specific to the data source, if any, to the given String.
setCommand(String) - Method in interface javax.sql.RowSet
Sets this RowSet object's command property to the given SQL query.
setConcurrency(int) - Method in interface javax.sql.RowSet
Sets the concurrency of this RowSet object to the given concurrency level.
setCurrency(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column is a cash value.
setCursorName(String) - Method in interface java.sql.Statement
Sets the SQL cursor name to the given String, which will be used by subsequent Statement object execute methods.
setDataSourceName(String) - Method in interface javax.sql.RowSet
Sets the data source name property for this RowSet object to the given String.
setDate(int) - Method in class java.sql.Time
Deprecated. 
setDate(int, Date) - Method in interface java.sql.PreparedStatement
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.
setDate(int, Date) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.sql.Date value.
setDate(int, Date, Calendar) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
setDate(int, Date, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given java.sql.Date value.
setDate(String, Date) - Method in interface java.sql.CallableStatement
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.
setDate(String, Date) - Method in interface javax.sql.RowSet
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.
setDate(String, Date, Calendar) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
setDate(String, Date, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
setDouble(int, double) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java double value.
setDouble(int, double) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java double value.
setDouble(String, double) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java double value.
setDouble(String, double) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java double value.
setEscapeProcessing(boolean) - Method in interface java.sql.Statement
Sets escape processing on or off.
setEscapeProcessing(boolean) - Method in interface javax.sql.RowSet
Sets escape processing for this RowSet object on or off.
setFetchDirection(int) - Method in interface java.sql.ResultSet
Gives a hint as to the direction in which the rows in this ResultSet object will be processed.
setFetchDirection(int) - Method in interface java.sql.Statement
Gives the driver a hint as to the direction in which rows will be processed in ResultSet objects created using this Statement object.
setFetchSize(int) - Method in interface java.sql.ResultSet
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.
setFetchSize(int) - Method in interface java.sql.Statement
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 generated by this Statement.
setFloat(int, float) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java float value.
setFloat(int, float) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java float value.
setFloat(String, float) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java float value.
setFloat(String, float) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java float value.
setHoldability(int) - Method in interface java.sql.Connection
Changes the default holdability of ResultSet objects created using this Connection object to the given holdability.
setHours(int) - Method in class java.sql.Date
Deprecated. 
setInt(int, int) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java int value.
setInt(int, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java int value.
setInt(String, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java int value.
setInt(String, int) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java int value.
setLargeMaxRows(long) - Method in interface java.sql.Statement
Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
setLoginTimeout(int) - Static method in class java.sql.DriverManager
Sets the maximum time in seconds that a driver will wait while attempting to connect to a database once the driver has been identified.
setLoginTimeout(int) - Method in interface javax.sql.CommonDataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - Method in interface javax.sql.ConnectionPoolDataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - Method in interface javax.sql.DataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLoginTimeout(int) - Method in interface javax.sql.XADataSource
Sets the maximum time in seconds that this data source will wait while attempting to connect to a database.
setLogStream(PrintStream) - Static method in class java.sql.DriverManager
Deprecated.
Use setLogWriter
setLogWriter(PrintWriter) - Static method in class java.sql.DriverManager
Sets the logging/tracing PrintWriter object that is used by the DriverManager and all drivers.
setLogWriter(PrintWriter) - Method in interface javax.sql.CommonDataSource
Sets the log writer for this DataSource object to the given java.io.PrintWriter object.
setLogWriter(PrintWriter) - Method in interface javax.sql.ConnectionPoolDataSource
Sets the log writer for this DataSource object to the given java.io.PrintWriter object.
setLogWriter(PrintWriter) - Method in interface javax.sql.DataSource
Sets the log writer for this DataSource object to the given java.io.PrintWriter object.
setLogWriter(PrintWriter) - Method in interface javax.sql.XADataSource
Sets the log writer for this DataSource object to the given java.io.PrintWriter object.
setLong(int, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java long value.
setLong(int, long) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java long value.
setLong(String, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java long value.
setLong(String, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java long value.
setMaxFieldSize(int) - Method in interface java.sql.Statement
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.
setMaxFieldSize(int) - Method in interface javax.sql.RowSet
Sets the maximum number of bytes that can be returned for a column value to the given number of bytes.
setMaxRows(int) - Method in interface java.sql.Statement
Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
setMaxRows(int) - Method in interface javax.sql.RowSet
Sets the maximum number of rows that this RowSet object can contain to the specified number.
setMetaData(RowSetMetaData) - Method in interface javax.sql.RowSetInternal
Sets the given RowSetMetaData object as the RowSetMetaData object for this RowSet object.
setMinutes(int) - Method in class java.sql.Date
Deprecated. 
setMonth(int) - Method in class java.sql.Time
Deprecated. 
setNanos(int) - Method in class java.sql.Timestamp
Sets this Timestamp object's nanos field to the given value.
setNCharacterStream(int, Reader) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setNCharacterStream(int, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to a Reader object.
setNCharacterStream(int, Reader, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setNCharacterStream(int, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setNCharacterStream(String, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNClob(int, Reader) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setNClob(int, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNClob(int, Reader, long) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a Reader object.
setNClob(int, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNClob(int, NClob) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to a java.sql.NClob object.
setNClob(int, NClob) - Method in interface javax.sql.RowSet
Sets the designated parameter to a java.sql.NClob object.
setNClob(String, Reader) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setNClob(String, Reader) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNClob(String, Reader, long) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a Reader object.
setNClob(String, Reader, long) - Method in interface javax.sql.RowSet
Sets the designated parameter to a Reader object.
setNClob(String, NClob) - Method in interface java.sql.CallableStatement
Sets the designated parameter to a java.sql.NClob object.
setNClob(String, NClob) - Method in interface javax.sql.RowSet
Sets the designated parameter to a java.sql.NClob object.
setNetworkTimeout(Executor, int) - Method in interface java.sql.Connection
Sets the maximum period a Connection or objects created from the Connection will wait for the database to reply to any one request.
setNextException(SQLException) - Method in exception java.sql.SQLException
Adds an SQLException object to the end of the chain.
setNextWarning(SQLWarning) - Method in exception java.sql.SQLWarning
Adds a SQLWarning object to the end of the chain.
setNString(int, String) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given String object.
setNString(int, String) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given String object.
setNString(String, String) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given String object.
setNString(String, String) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given String object.
setNull(int, int) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to SQL NULL.
setNull(int, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's SQL command to SQL NULL.
setNull(int, int, String) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to SQL NULL.
setNull(int, int, String) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's SQL command to SQL NULL.
setNull(String, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to SQL NULL.
setNull(String, int) - Method in interface javax.sql.RowSet
Sets the designated parameter to SQL NULL.
setNull(String, int, String) - Method in interface java.sql.CallableStatement
Sets the designated parameter to SQL NULL.
setNull(String, int, String) - Method in interface javax.sql.RowSet
Sets the designated parameter to SQL NULL.
setNullable(int, int) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column's value can be set to NULL.
setObject(int, Object) - Method in interface java.sql.PreparedStatement
Sets the value of the designated parameter using the given object.
setObject(int, Object) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with a Java Object.
setObject(int, Object, int) - Method in interface java.sql.PreparedStatement
Sets the value of the designated parameter with the given object.
setObject(int, Object, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with a Java Object.
setObject(int, Object, int, int) - Method in interface java.sql.PreparedStatement
Sets the value of the designated parameter with the given object.
setObject(int, Object, int, int) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given Java Object.
setObject(int, Object, SQLType) - Method in interface java.sql.PreparedStatement
Sets the value of the designated parameter with the given object.
setObject(int, Object, SQLType, int) - Method in interface java.sql.PreparedStatement
Sets the value of the designated parameter with the given object.
setObject(Object) - Method in interface java.sql.Ref
Sets the structured type value that this Ref object references to the given instance of Object.
setObject(String, Object) - Method in interface java.sql.CallableStatement
Sets the value of the designated parameter with the given object.
setObject(String, Object) - Method in interface javax.sql.RowSet
Sets the value of the designated parameter with the given object.
setObject(String, Object, int) - Method in interface java.sql.CallableStatement
Sets the value of the designated parameter with the given object.
setObject(String, Object, int) - Method in interface javax.sql.RowSet
Sets the value of the designated parameter with the given object.
setObject(String, Object, int, int) - Method in interface java.sql.CallableStatement
Sets the value of the designated parameter with the given object.
setObject(String, Object, int, int) - Method in interface javax.sql.RowSet
Sets the value of the designated parameter with the given object.
setObject(String, Object, SQLType) - Method in interface java.sql.CallableStatement
Sets the value of the designated parameter with the given object.
setObject(String, Object, SQLType, int) - Method in interface java.sql.CallableStatement
Sets the value of the designated parameter with the given object.
setPassword(String) - Method in interface javax.sql.RowSet
Sets the database password for this RowSet object to the given String.
setPoolable(boolean) - Method in interface java.sql.Statement
Requests that a Statement be pooled or not pooled.
setPrecision(int, int) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's number of decimal digits to the given int.
setQueryTimeout(int) - Method in interface java.sql.Statement
Sets the number of seconds the driver will wait for a Statement object to execute to the given number of seconds.
setQueryTimeout(int) - Method in interface javax.sql.RowSet
Sets the maximum time the driver will wait for a statement to execute to the given number of seconds.
setReadOnly(boolean) - Method in interface java.sql.Connection
Puts this connection in read-only mode as a hint to the driver to enable database optimizations.
setReadOnly(boolean) - Method in interface javax.sql.RowSet
Sets whether this RowSet object is read-only to the given boolean.
setRef(int, Ref) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given REF(<structured-type>) value.
setRef(int, Ref) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given Ref value.
setResult(Class<T>) - Method in interface java.sql.SQLXML
Returns a Result for setting the XML value designated by this SQLXML instance.
setRowId(int, RowId) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.RowId object.
setRowId(int, RowId) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.RowId object.
setRowId(String, RowId) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.RowId object.
setRowId(String, RowId) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.RowId object.
setSavepoint() - Method in interface java.sql.Connection
Creates an unnamed savepoint in the current transaction and returns the new Savepoint object that represents it.
setSavepoint(String) - Method in interface java.sql.Connection
Creates a savepoint with the given name in the current transaction and returns the new Savepoint object that represents it.
setScale(int, int) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's number of digits to the right of the decimal point to the given int.
setSchema(String) - Method in interface java.sql.Connection
Sets the given schema name to access.
setSchemaName(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the name of the designated column's table's schema, if any, to the given String.
setSearchable(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column can be used in a where clause.
setSeconds(int) - Method in class java.sql.Date
Deprecated. 
setShardingKey(ShardingKey) - Method in interface java.sql.Connection
Specifies a shardingKey to use with this Connection
setShardingKey(ShardingKey, ShardingKey) - Method in interface java.sql.Connection
Specifies a shardingKey and superShardingKey to use with this Connection
setShardingKeyIfValid(ShardingKey, int) - Method in interface java.sql.Connection
Sets and validates the sharding key for this connection.
setShardingKeyIfValid(ShardingKey, ShardingKey, int) - Method in interface java.sql.Connection
Sets and validates the sharding keys for this connection.
setShort(int, short) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java short value.
setShort(int, short) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java short value.
setShort(String, short) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java short value.
setShort(String, short) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java short value.
setSigned(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column is a signed number.
setSQLXML(int, SQLXML) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.SQLXML object.
setSQLXML(int, SQLXML) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.SQLXML object.
setSQLXML(String, SQLXML) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.SQLXML object.
setSQLXML(String, SQLXML) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.SQLXML object.
setString(int, String) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given Java String value.
setString(int, String) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given Java String value.
setString(long, String) - Method in interface java.sql.Clob
Writes the given Java String to the CLOB value that this Clob object designates at the position pos.
setString(long, String, int, int) - Method in interface java.sql.Clob
Writes len characters of str, starting at character offset, to the CLOB value that this Clob represents.
setString(String) - Method in interface java.sql.SQLXML
Sets the XML value designated by this SQLXML instance to the given String representation.
setString(String, String) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Java String value.
setString(String, String) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given Java String value.
setTableName(int, String) - Method in interface javax.sql.RowSetMetaData
Sets the designated column's table name, if any, to the given String.
setTime(int, Time) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Time value.
setTime(int, Time) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.sql.Time value.
setTime(int, Time, Calendar) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
setTime(int, Time, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given java.sql.Time value.
setTime(long) - Method in class java.sql.Date
Sets an existing Date object using the given milliseconds time value.
setTime(long) - Method in class java.sql.Time
Sets a Time object using a milliseconds time value.
setTime(long) - Method in class java.sql.Timestamp
Sets this Timestamp object to represent a point in time that is time milliseconds after January 1, 1970 00:00:00 GMT.
setTime(String, Time) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Time value.
setTime(String, Time) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Time value.
setTime(String, Time, Calendar) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
setTime(String, Time, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
setTimestamp(int, Timestamp) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(int, Timestamp) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command to the given java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
setTimestamp(int, Timestamp, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter in this RowSet object's command with the given java.sql.Timestamp value.
setTimestamp(String, Timestamp) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(String, Timestamp) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Timestamp value.
setTimestamp(String, Timestamp, Calendar) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
setTimestamp(String, Timestamp, Calendar) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
setTransactionIsolation(int) - Method in interface java.sql.Connection
Attempts to change the transaction isolation level for this Connection object to the one given.
setTransactionIsolation(int) - Method in interface javax.sql.RowSet
Sets the transaction isolation level for this RowSet object.
setType(int) - Method in interface javax.sql.RowSet
Sets the type of this RowSet object to the given type.
setTypeMap(Map<String, Class<?>>) - Method in interface java.sql.Connection
Installs the given TypeMap object as the type map for this Connection object.
setTypeMap(Map<String, Class<?>>) - Method in interface javax.sql.RowSet
Installs the given java.util.Map object as the default type map for this RowSet object.
setUnicodeStream(int, InputStream, int) - Method in interface java.sql.PreparedStatement
Deprecated.
Use setCharacterStream
setUrl(String) - Method in interface javax.sql.RowSet
Sets the URL this RowSet object will use when it uses the DriverManager to create a connection.
setURL(int, URL) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.net.URL value.
setURL(int, URL) - Method in interface javax.sql.RowSet
Sets the designated parameter to the given java.net.URL value.
setURL(String, URL) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.net.URL object.
setUsername(String) - Method in interface javax.sql.RowSet
Sets the username property for this RowSet object to the given String.
setYear(int) - Method in class java.sql.Time
Deprecated. 
shardingKey(ShardingKey) - Method in interface java.sql.ConnectionBuilder
Specifies a shardingKey to be used when creating a connection
shardingKey(ShardingKey) - Method in interface javax.sql.PooledConnectionBuilder
Specifies a shardingKey to be used when creating a connection
shardingKey(ShardingKey) - Method in interface javax.sql.XAConnectionBuilder
Specifies a shardingKey to be used when creating a connection
statementClosed(StatementEvent) - Method in interface javax.sql.StatementEventListener
The driver calls this method on all StatementEventListeners registered on the connection when it detects that a PreparedStatement is closed.
statementErrorOccurred(StatementEvent) - Method in interface javax.sql.StatementEventListener
The driver calls this method on all StatementEventListeners registered on the connection when it detects that a PreparedStatement is invalid.
storesLowerCaseIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in lower case.
storesLowerCaseQuotedIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in lower case.
storesMixedCaseIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in mixed case.
storesMixedCaseQuotedIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in mixed case.
storesUpperCaseIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case unquoted SQL identifiers as case insensitive and stores them in upper case.
storesUpperCaseQuotedIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case quoted SQL identifiers as case insensitive and stores them in upper case.
subkey(Object, SQLType) - Method in interface java.sql.ShardingKeyBuilder
This method will be called to add a subkey into a Sharding Key object being built.
superShardingKey(ShardingKey) - Method in interface java.sql.ConnectionBuilder
Specifies a superShardingKey to be used when creating a connection
superShardingKey(ShardingKey) - Method in interface javax.sql.PooledConnectionBuilder
Specifies a superShardingKey to be used when creating a connection
superShardingKey(ShardingKey) - Method in interface javax.sql.XAConnectionBuilder
Specifies a superShardingKey to be used when creating a connection
supportsAlterTableWithAddColumn() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports ALTER TABLE with add column.
supportsAlterTableWithDropColumn() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports ALTER TABLE with drop column.
supportsANSI92EntryLevelSQL() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ANSI92 entry level SQL grammar.
supportsANSI92FullSQL() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ANSI92 full SQL grammar supported.
supportsANSI92IntermediateSQL() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ANSI92 intermediate SQL grammar supported.
supportsBatchUpdates() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports batch updates.
supportsCatalogsInDataManipulation() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog name can be used in a data manipulation statement.
supportsCatalogsInIndexDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog name can be used in an index definition statement.
supportsCatalogsInPrivilegeDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog name can be used in a privilege definition statement.
supportsCatalogsInProcedureCalls() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog name can be used in a procedure call statement.
supportsCatalogsInTableDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a catalog name can be used in a table definition statement.
supportsColumnAliasing() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports column aliasing.
supportsConvert() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the JDBC scalar function CONVERT for the conversion of one JDBC type to another.
supportsConvert(int, int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the JDBC scalar function CONVERT for conversions between the JDBC types fromType and toType.
supportsCoreSQLGrammar() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ODBC Core SQL grammar.
supportsCorrelatedSubqueries() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports correlated subqueries.
supportsDataDefinitionAndDataManipulationTransactions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports both data definition and data manipulation statements within a transaction.
supportsDataManipulationTransactionsOnly() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports only data manipulation statements within a transaction.
supportsDifferentTableCorrelationNames() - Method in interface java.sql.DatabaseMetaData
Retrieves whether, when table correlation names are supported, they are restricted to being different from the names of the tables.
supportsExpressionsInOrderBy() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports expressions in ORDER BY lists.
supportsExtendedSQLGrammar() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ODBC Extended SQL grammar.
supportsFullOuterJoins() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports full nested outer joins.
supportsGetGeneratedKeys() - Method in interface java.sql.DatabaseMetaData
Retrieves whether auto-generated keys can be retrieved after a statement has been executed
supportsGroupBy() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports some form of GROUP BY clause.
supportsGroupByBeyondSelect() - Method in interface java.sql.DatabaseMetaData
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.
supportsGroupByUnrelated() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports using a column that is not in the SELECT statement in a GROUP BY clause.
supportsIntegrityEnhancementFacility() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the SQL Integrity Enhancement Facility.
supportsLikeEscapeClause() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports specifying a LIKE escape clause.
supportsLimitedOuterJoins() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database provides limited support for outer joins.
supportsMinimumSQLGrammar() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the ODBC Minimum SQL grammar.
supportsMixedCaseIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case unquoted SQL identifiers as case sensitive and as a result stores them in mixed case.
supportsMixedCaseQuotedIdentifiers() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database treats mixed case quoted SQL identifiers as case sensitive and as a result stores them in mixed case.
supportsMultipleOpenResults() - Method in interface java.sql.DatabaseMetaData
Retrieves whether it is possible to have multiple ResultSet objects returned from a CallableStatement object simultaneously.
supportsMultipleResultSets() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports getting multiple ResultSet objects from a single call to the method execute.
supportsMultipleTransactions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database allows having multiple transactions open at once (on different connections).
supportsNamedParameters() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports named parameters to callable statements.
supportsNonNullableColumns() - Method in interface java.sql.DatabaseMetaData
Retrieves whether columns in this database may be defined as non-nullable.
supportsOpenCursorsAcrossCommit() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports keeping cursors open across commits.
supportsOpenCursorsAcrossRollback() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports keeping cursors open across rollbacks.
supportsOpenStatementsAcrossCommit() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports keeping statements open across commits.
supportsOpenStatementsAcrossRollback() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports keeping statements open across rollbacks.
supportsOrderByUnrelated() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports using a column that is not in the SELECT statement in an ORDER BY clause.
supportsOuterJoins() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports some form of outer join.
supportsPositionedDelete() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports positioned DELETE statements.
supportsPositionedUpdate() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports positioned UPDATE statements.
supportsRefCursors() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports REF CURSOR.
supportsResultSetConcurrency(int, int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the given concurrency type in combination with the given result set type.
supportsResultSetHoldability(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the given result set holdability.
supportsResultSetType(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the given result set type.
supportsSavepoints() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports savepoints.
supportsSchemasInDataManipulation() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a schema name can be used in a data manipulation statement.
supportsSchemasInIndexDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a schema name can be used in an index definition statement.
supportsSchemasInPrivilegeDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a schema name can be used in a privilege definition statement.
supportsSchemasInProcedureCalls() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a schema name can be used in a procedure call statement.
supportsSchemasInTableDefinitions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether a schema name can be used in a table definition statement.
supportsSelectForUpdate() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports SELECT FOR UPDATE statements.
supportsSharding() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports sharding.
supportsStatementPooling() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports statement pooling.
supportsStoredFunctionsUsingCallSyntax() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports invoking user-defined or vendor functions using the stored procedure escape syntax.
supportsStoredProcedures() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports stored procedure calls that use the stored procedure escape syntax.
supportsSubqueriesInComparisons() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports subqueries in comparison expressions.
supportsSubqueriesInExists() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports subqueries in EXISTS expressions.
supportsSubqueriesInIns() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports subqueries in IN expressions.
supportsSubqueriesInQuantifieds() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports subqueries in quantified expressions.
supportsTableCorrelationNames() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports table correlation names.
supportsTransactionIsolationLevel(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the given transaction isolation level.
supportsTransactions() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports transactions.
supportsUnion() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports SQL UNION.
supportsUnionAll() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports SQL UNION ALL.

T

Time - Class in java.sql
A thin wrapper around the java.util.Date class that allows the JDBC API to identify this as an SQL TIME value.
Timestamp - Class in java.sql
A thin wrapper around java.util.Date that allows the JDBC API to identify this as an SQL TIMESTAMP value.
Types - Class in java.sql
The class that defines the constants that are used to identify generic SQL types, called JDBC types.
TIME - java.sql.JDBCType
Identifies the generic SQL type TIME.
TIME_WITH_TIMEZONE - java.sql.JDBCType
Identifies the generic SQL type TIME_WITH_TIMEZONE.
TIMESTAMP - java.sql.JDBCType
Identifies the generic SQL type TIMESTAMP.
TIMESTAMP_WITH_TIMEZONE - java.sql.JDBCType
Identifies the generic SQL type TIMESTAMP_WITH_TIMEZONE.
TINYINT - java.sql.JDBCType
Identifies the generic SQL type TINYINT.
tableIndexClustered - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is a clustered index.
tableIndexHashed - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is a hashed index.
tableIndexOther - Static variable in interface java.sql.DatabaseMetaData
Indicates that this table index is not a clustered index, a hashed index, or table statistics; it is something other than these.
tableIndexStatistic - Static variable in interface java.sql.DatabaseMetaData
Indicates that this column contains table statistics that are returned in conjunction with a table's index descriptions.
TIME - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIME.
TIME_WITH_TIMEZONE - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIME WITH TIMEZONE.
TIMESTAMP - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIMESTAMP.
TIMESTAMP_WITH_TIMEZONE - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TIMESTAMP WITH TIMEZONE.
TINYINT - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type TINYINT.
TRANSACTION_NONE - Static variable in interface java.sql.Connection
A constant indicating that transactions are not supported.
TRANSACTION_READ_COMMITTED - Static variable in interface java.sql.Connection
A constant indicating that dirty reads are prevented; non-repeatable reads and phantom reads can occur.
TRANSACTION_READ_UNCOMMITTED - Static variable in interface java.sql.Connection
A constant indicating that dirty reads, non-repeatable reads and phantom reads can occur.
TRANSACTION_REPEATABLE_READ - Static variable in interface java.sql.Connection
A constant indicating that dirty reads and non-repeatable reads are prevented; phantom reads can occur.
TRANSACTION_SERIALIZABLE - Static variable in interface java.sql.Connection
A constant indicating that dirty reads, non-repeatable reads and phantom reads are prevented.
TYPE_FORWARD_ONLY - Static variable in interface java.sql.ResultSet
The constant indicating the type for a ResultSet object whose cursor may move only forward.
TYPE_SCROLL_INSENSITIVE - Static variable in interface java.sql.ResultSet
The constant indicating the type for a ResultSet object that is scrollable but generally not sensitive to changes to the data that underlies the ResultSet.
TYPE_SCROLL_SENSITIVE - Static variable in interface java.sql.ResultSet
The constant indicating the type for a ResultSet object that is scrollable and generally sensitive to changes to the data that underlies the ResultSet.
typeNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that a NULL value is NOT allowed for this data type.
typeNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that a NULL value is allowed for this data type.
typeNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that it is not known whether a NULL value is allowed for this data type.
typePredBasic - Static variable in interface java.sql.DatabaseMetaData
Indicates that the data type can be only be used in WHERE search clauses that do not use LIKE predicates.
typePredChar - Static variable in interface java.sql.DatabaseMetaData
Indicates that the data type can be only be used in WHERE search clauses that use LIKE predicates.
typePredNone - Static variable in interface java.sql.DatabaseMetaData
Indicates that WHERE search clauses are not supported for this type.
typeSearchable - Static variable in interface java.sql.DatabaseMetaData
Indicates that all WHERE search clauses can be based on this type.
Time(int, int, int) - Constructor for class java.sql.Time
Deprecated.
Use the constructor that takes a milliseconds value in place of this constructor
Time(long) - Constructor for class java.sql.Time
Constructs a Time object using a milliseconds time value.
Timestamp(int, int, int, int, int, int, int) - Constructor for class java.sql.Timestamp
Deprecated.
instead use the constructor Timestamp(long millis)
Timestamp(long) - Constructor for class java.sql.Timestamp
Constructs a Timestamp object using a milliseconds time value.
toInstant() - Method in class java.sql.Date
This method always throws an UnsupportedOperationException and should not be used because SQL Date values do not have a time component.
toInstant() - Method in class java.sql.Time
This method always throws an UnsupportedOperationException and should not be used because SQL Time values do not have a date component.
toInstant() - Method in class java.sql.Timestamp
Converts this Timestamp object to an Instant.
toLocalDate() - Method in class java.sql.Date
Creates a LocalDate instance using the year, month and day from this Date object.
toLocalDateTime() - Method in class java.sql.Timestamp
Converts this Timestamp object to a LocalDateTime.
toLocalTime() - Method in class java.sql.Time
Converts this Time object to a LocalTime.
toString() - Method in class java.sql.Date
Formats a date in the date escape format yyyy-mm-dd.
toString() - Method in interface java.sql.RowId
Returns a String representing the value of the SQL ROWID designated by this java.sql.RowId object.
toString() - Method in class java.sql.Time
Formats a time in JDBC time escape format.
toString() - Method in class java.sql.Timestamp
Formats a timestamp in JDBC timestamp escape format.
truncate(long) - Method in interface java.sql.Blob
Truncates the BLOB value that this Blob object represents to be len bytes in length.
truncate(long) - Method in interface java.sql.Clob
Truncates the CLOB value that this Clob designates to have a length of len characters.

U

USAGE_UNKNOWN - java.sql.PseudoColumnUsage
The usage of the pseudo/hidden column cannot be determined.
unwrap(Class<T>) - Method in interface java.sql.Wrapper
Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.
updateArray(int, Array) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Array value.
updateArray(String, Array) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Array value.
updateAsciiStream(int, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value.
updateAsciiStream(int, InputStream, int) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value, which will have the specified number of bytes.
updateAsciiStream(int, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value, which will have the specified number of bytes.
updateAsciiStream(String, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value.
updateAsciiStream(String, InputStream, int) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value, which will have the specified number of bytes.
updateAsciiStream(String, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column with an ascii stream value, which will have the specified number of bytes.
updateBigDecimal(int, BigDecimal) - Method in interface java.sql.ResultSet
Updates the designated column with a java.math.BigDecimal value.
updateBigDecimal(String, BigDecimal) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.BigDecimal value.
updateBinaryStream(int, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value.
updateBinaryStream(int, InputStream, int) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value, which will have the specified number of bytes.
updateBinaryStream(int, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value, which will have the specified number of bytes.
updateBinaryStream(String, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value.
updateBinaryStream(String, InputStream, int) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value, which will have the specified number of bytes.
updateBinaryStream(String, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column with a binary stream value, which will have the specified number of bytes.
updateBlob(int, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column using the given input stream.
updateBlob(int, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given input stream, which will have the specified number of bytes.
updateBlob(int, Blob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Blob value.
updateBlob(String, InputStream) - Method in interface java.sql.ResultSet
Updates the designated column using the given input stream.
updateBlob(String, InputStream, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given input stream, which will have the specified number of bytes.
updateBlob(String, Blob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Blob value.
updateBoolean(int, boolean) - Method in interface java.sql.ResultSet
Updates the designated column with a boolean value.
updateBoolean(String, boolean) - Method in interface java.sql.ResultSet
Updates the designated column with a boolean value.
updateByte(int, byte) - Method in interface java.sql.ResultSet
Updates the designated column with a byte value.
updateByte(String, byte) - Method in interface java.sql.ResultSet
Updates the designated column with a byte value.
updateBytes(int, byte[]) - Method in interface java.sql.ResultSet
Updates the designated column with a byte array value.
updateBytes(String, byte[]) - Method in interface java.sql.ResultSet
Updates the designated column with a byte array value.
updateCharacterStream(int, Reader) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value.
updateCharacterStream(int, Reader, int) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateCharacterStream(int, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateCharacterStream(String, Reader) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value.
updateCharacterStream(String, Reader, int) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateCharacterStream(String, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateClob(int, Reader) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object.
updateClob(int, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object, which is the given number of characters long.
updateClob(int, Clob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Clob value.
updateClob(String, Reader) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object.
updateClob(String, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object, which is the given number of characters long.
updateClob(String, Clob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Clob value.
updateDate(int, Date) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Date value.
updateDate(String, Date) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Date value.
updateDouble(int, double) - Method in interface java.sql.ResultSet
Updates the designated column with a double value.
updateDouble(String, double) - Method in interface java.sql.ResultSet
Updates the designated column with a double value.
updateFloat(int, float) - Method in interface java.sql.ResultSet
Updates the designated column with a float value.
updateFloat(String, float) - Method in interface java.sql.ResultSet
Updates the designated column with a float value.
updateInt(int, int) - Method in interface java.sql.ResultSet
Updates the designated column with an int value.
updateInt(String, int) - Method in interface java.sql.ResultSet
Updates the designated column with an int value.
updateLong(int, long) - Method in interface java.sql.ResultSet
Updates the designated column with a long value.
updateLong(String, long) - Method in interface java.sql.ResultSet
Updates the designated column with a long value.
updateNCharacterStream(int, Reader) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value.
updateNCharacterStream(int, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateNCharacterStream(String, Reader) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value.
updateNCharacterStream(String, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column with a character stream value, which will have the specified number of bytes.
updateNClob(int, Reader) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader The data will be read from the stream as needed until end-of-stream is reached.
updateNClob(int, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object, which is the given number of characters long.
updateNClob(int, NClob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.NClob value.
updateNClob(String, Reader) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object.
updateNClob(String, Reader, long) - Method in interface java.sql.ResultSet
Updates the designated column using the given Reader object, which is the given number of characters long.
updateNClob(String, NClob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.NClob value.
updateNString(int, String) - Method in interface java.sql.ResultSet
Updates the designated column with a String value.
updateNString(String, String) - Method in interface java.sql.ResultSet
Updates the designated column with a String value.
updateNull(int) - Method in interface java.sql.ResultSet
Updates the designated column with a null value.
updateNull(String) - Method in interface java.sql.ResultSet
Updates the designated column with a null value.
updateObject(int, Object) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(int, Object, int) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(int, Object, SQLType) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(int, Object, SQLType, int) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(String, Object) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(String, Object, int) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(String, Object, SQLType) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateObject(String, Object, SQLType, int) - Method in interface java.sql.ResultSet
Updates the designated column with an Object value.
updateRef(int, Ref) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Ref value.
updateRef(String, Ref) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Ref value.
updateRow() - Method in interface java.sql.ResultSet
Updates the underlying database with the new contents of the current row of this ResultSet object.
updateRowId(int, RowId) - Method in interface java.sql.ResultSet
Updates the designated column with a RowId value.
updateRowId(String, RowId) - Method in interface java.sql.ResultSet
Updates the designated column with a RowId value.
updatesAreDetected(int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether or not a visible row update can be detected by calling the method ResultSet.rowUpdated.
updateShort(int, short) - Method in interface java.sql.ResultSet
Updates the designated column with a short value.
updateShort(String, short) - Method in interface java.sql.ResultSet
Updates the designated column with a short value.
updateSQLXML(int, SQLXML) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.SQLXML value.
updateSQLXML(String, SQLXML) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.SQLXML value.
updateString(int, String) - Method in interface java.sql.ResultSet
Updates the designated column with a String value.
updateString(String, String) - Method in interface java.sql.ResultSet
Updates the designated column with a String value.
updateTime(int, Time) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Time value.
updateTime(String, Time) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Time value.
updateTimestamp(int, Timestamp) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Timestamp value.
updateTimestamp(String, Timestamp) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Timestamp value.
user(String) - Method in interface java.sql.ConnectionBuilder
Specifies the username to be used when creating a connection
user(String) - Method in interface javax.sql.PooledConnectionBuilder
Specifies the username to be used when creating a connection
user(String) - Method in interface javax.sql.XAConnectionBuilder
Specifies the username to be used when creating a connection
usesLocalFilePerTable() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database uses a file for each table.
usesLocalFiles() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database stores tables in a local file.

V

VARBINARY - java.sql.JDBCType
Identifies the generic SQL type VARBINARY.
VARCHAR - java.sql.JDBCType
Identifies the generic SQL type VARCHAR.
value - Variable in class java.sql.DriverPropertyInfo
The value field specifies the current value of the property, based on a combination of the information supplied to the method getPropertyInfo, the Java environment, and the driver-supplied default values.
VARBINARY - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARBINARY.
VARCHAR - Static variable in class java.sql.Types
The constant in the Java programming language, sometimes referred to as a type code, that identifies the generic SQL type VARCHAR.
versionColumnNotPseudo - Static variable in interface java.sql.DatabaseMetaData
Indicates that this version column is NOT a pseudo column.
versionColumnPseudo - Static variable in interface java.sql.DatabaseMetaData
Indicates that this version column is a pseudo column.
versionColumnUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that this version column may or may not be a pseudo column.
valueOf(int) - Static method in enum java.sql.JDBCType
Returns the JDBCType that corresponds to the specified Types value
valueOf(String) - Static method in enum java.sql.ClientInfoStatus
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in class java.sql.Date
Converts a string in JDBC date escape format to a Date value.
valueOf(String) - Static method in enum java.sql.JDBCType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum java.sql.PseudoColumnUsage
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum java.sql.RowIdLifetime
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in class java.sql.Time
Converts a string in JDBC time escape format to a Time value.
valueOf(String) - Static method in class java.sql.Timestamp
Converts a String object in JDBC timestamp escape format to a Timestamp value.
valueOf(LocalDate) - Static method in class java.sql.Date
Obtains an instance of Date from a LocalDate object with the same year, month and day of month value as the given LocalDate.
valueOf(LocalDateTime) - Static method in class java.sql.Timestamp
Obtains an instance of Timestamp from a LocalDateTime object, with the same year, month, day of month, hours, minutes, seconds and nanos date-time value as the provided LocalDateTime.
valueOf(LocalTime) - Static method in class java.sql.Time
Obtains an instance of Time from a LocalTime object with the same hour, minute and second time value as the given LocalTime.
values() - Static method in enum java.sql.ClientInfoStatus
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum java.sql.JDBCType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum java.sql.PseudoColumnUsage
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum java.sql.RowIdLifetime
Returns an array containing the constants of this enum type, in the order they are declared.

W

WHERE_CLAUSE_ONLY - java.sql.PseudoColumnUsage
The pseudo/hidden column may only be used in a WHERE clause.
Wrapper - Interface in java.sql
Interface for JDBC classes which provide the ability to retrieve the delegate instance when the instance in question is in fact a proxy class.
wasNull() - Method in interface java.sql.CallableStatement
Retrieves whether the last OUT parameter read had the value of SQL NULL.
wasNull() - Method in interface java.sql.ResultSet
Reports whether the last column read had a value of SQL NULL.
wasNull() - Method in interface java.sql.SQLInput
Retrieves whether the last value read was SQL NULL.
writeArray(Array) - Method in interface java.sql.SQLOutput
Writes an SQL ARRAY value to the stream.
writeAsciiStream(InputStream) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a stream of ASCII characters.
writeBigDecimal(BigDecimal) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a java.math.BigDecimal object.
writeBinaryStream(InputStream) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a stream of uninterpreted bytes.
writeBlob(Blob) - Method in interface java.sql.SQLOutput
Writes an SQL BLOB value to the stream.
writeBoolean(boolean) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java boolean.
writeByte(byte) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java byte.
writeBytes(byte[]) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as an array of bytes.
writeCharacterStream(Reader) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a stream of Unicode characters.
writeClob(Clob) - Method in interface java.sql.SQLOutput
Writes an SQL CLOB value to the stream.
writeData(RowSetInternal) - Method in interface javax.sql.RowSetWriter
Writes the changes in this RowSetWriter object's rowset back to the data source from which it got its data.
writeDate(Date) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a java.sql.Date object.
writeDouble(double) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java double.
writeFloat(float) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java float.
writeInt(int) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java int.
writeLong(long) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java long.
writeNClob(NClob) - Method in interface java.sql.SQLOutput
Writes an SQL NCLOB value to the stream.
writeNString(String) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a String in the Java programming language.
writeObject(Object, SQLType) - Method in interface java.sql.SQLOutput
Writes to the stream the data contained in the given object.
writeObject(SQLData) - Method in interface java.sql.SQLOutput
Writes to the stream the data contained in the given SQLData object.
writeRef(Ref) - Method in interface java.sql.SQLOutput
Writes an SQL REF value to the stream.
writeRowId(RowId) - Method in interface java.sql.SQLOutput
Writes an SQL ROWID value to the stream.
writeShort(short) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a Java short.
writeSQL(SQLOutput) - Method in interface java.sql.SQLData
Writes this object to the given SQL data stream, converting it back to its SQL value in the data source.
writeSQLXML(SQLXML) - Method in interface java.sql.SQLOutput
Writes an SQL XML value to the stream.
writeString(String) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a String in the Java programming language.
writeStruct(Struct) - Method in interface java.sql.SQLOutput
Writes an SQL structured type value to the stream.
writeTime(Time) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a java.sql.Time object.
writeTimestamp(Timestamp) - Method in interface java.sql.SQLOutput
Writes the next attribute to the stream as a java.sql.Timestamp object.
writeURL(URL) - Method in interface java.sql.SQLOutput
Writes a SQL DATALINK value to the stream.

X

XAConnection - Interface in javax.sql
An object that provides support for distributed transactions.
XAConnectionBuilder - Interface in javax.sql
A builder created from a XADataSource object, used to establish a connection to the database that the data source object represents.
XADataSource - Interface in javax.sql
A factory for XAConnection objects that is used internally.
A B C D E F G H I J K L M N O P R S T U V W X 
Skip navigation links
JSR 221 Maintenance Release 4.3