A B C D E F G H I J K L M N O P R S T U V W X Z

A

abs() - Method in class java.math.BigInteger
Returns a BigInteger whose value is the absolute value of this BigInteger.
abs() - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is the absolute value of this BigDecimal, and whose scale is this.scale().
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.
add(BigDecimal) - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (this + val), and whose scale is max(this.scale(), val.scale()).
add(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this + val).
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 commmands 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.
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.
and(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this & val).
andNot(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this & ~val).
Array - interface java.sql.Array.
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.

B

BatchUpdateException - exception java.sql.BatchUpdateException.
An exception thrown when an error occurs during a batch update operation.
BatchUpdateException() - Constructor for class java.sql.BatchUpdateException
Constructs a BatchUpdateException object with the reason, SQLState, and update count initialized to null and the vendor code initialized to 0.
BatchUpdateException(int[]) - Constructor for class java.sql.BatchUpdateException
Constructs a BatchUpdateException initialized to null for the reason and SQLState and 0 for the vendor code.
BatchUpdateException(String, int[]) - Constructor for class java.sql.BatchUpdateException
Constructs a BatchUpdateException initialized with reason, updateCounts and null for the SQLState and 0 for the vendorCode.
BatchUpdateException(String, String, int[]) - Constructor for class java.sql.BatchUpdateException
Constructs a BatchUpdateException initialized with the given arguments (reason, SQLState, and updateCounts) and 0 for the vendor code.
BatchUpdateException(String, String, int, int[]) - Constructor for class java.sql.BatchUpdateException
Constructs a fully-specified BatchUpdateException object, initializing it with the given values.
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.
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.
BigDecimal - class java.math.BigDecimal.
Immutable, arbitrary-precision signed decimal numbers.
BigDecimal(BigInteger) - Constructor for class java.math.BigDecimal
Translates a BigInteger into a BigDecimal.
BigDecimal(BigInteger, int) - Constructor for class java.math.BigDecimal
Translates a BigInteger unscaled value and an int scale into a BigDecimal.
BigDecimal(double) - Constructor for class java.math.BigDecimal
Translates a double into a BigDecimal.
BigDecimal(String) - Constructor for class java.math.BigDecimal
Translates the String representation of a BigDecimal into a BigDecimal.
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.
BigInteger - class java.math.BigInteger.
Immutable arbitrary-precision integers.
BigInteger(byte[]) - Constructor for class java.math.BigInteger
Translates a byte array containing the two's-complement binary representation of a BigInteger into a BigInteger.
BigInteger(int, byte[]) - Constructor for class java.math.BigInteger
Translates the sign-magnitude representation of a BigInteger into a BigInteger.
BigInteger(int, int, Random) - Constructor for class java.math.BigInteger
Constructs a randomly generated positive BigInteger that is probably prime, with the specified bitLength.
BigInteger(int, Random) - Constructor for class java.math.BigInteger
Constructs a randomly generated BigInteger, uniformly distributed over the range 0 to (2numBits - 1), inclusive.
BigInteger(String) - Constructor for class java.math.BigInteger
Translates the decimal String representation of a BigInteger into a BigInteger.
BigInteger(String, int) - Constructor for class java.math.BigInteger
Translates the String representation of a BigInteger in the specified radix into a BigInteger.
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.
bitCount() - Method in class java.math.BigInteger
Returns the number of bits in the two's complement representation of this BigInteger that differ from its sign bit.
bitLength() - Method in class java.math.BigInteger
Returns the number of bits in the minimal two's-complement representation of this BigInteger, excluding a sign bit.
Blob - interface java.sql.Blob.
The representation (mapping) in the JavaTM programming language of an SQL BLOB value.
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, somtimes referred to as a type code, that identifies the generic SQL type BOOLEAN.

C

CallableStatement - interface java.sql.CallableStatement.
The interface used to execute SQL stored procedures.
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.
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.
clearBatch() - Method in interface java.sql.Statement
Empties this Statement object's current list of SQL commands.
clearBit(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit cleared.
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.Statement
Clears all the warnings reported on this Statement object.
clearWarnings() - Method in interface java.sql.ResultSet
Clears all warnings reported on this ResultSet object.
clearWarnings() - Method in interface java.sql.Connection
Clears all warnings reported for this Connection object.
Clob - interface java.sql.Clob.
The mapping in the JavaTM programming language for the SQL CLOB type.
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 ResultSet objects should be closed when the method Connection.commit is called.
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 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.Connection
Releases this Connection object's database and JDBC resources immediately instead of waiting for them to be automatically released.
close() - Method in interface javax.sql.PooledConnection
Closes the physical connection that this PooledConnection object represents.
columnNoNulls - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that a column does not allow NULL values.
columnNoNulls - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column might not allow NULL values.
columnNullable - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that a column allows NULL values.
columnNullable - Static variable in interface java.sql.DatabaseMetaData
Indicates that the column definitely allows NULL values.
columnNullableUnknown - Static variable in interface java.sql.ResultSetMetaData
The constant indicating that the nullability of a column's values is unknown.
columnNullableUnknown - Static variable in interface java.sql.DatabaseMetaData
Indicates that the nullability of columns is unknown.
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(BigDecimal) - Method in class java.math.BigDecimal
Compares this BigDecimal with the specified BigDecimal.
compareTo(BigInteger) - Method in class java.math.BigInteger
Compares this BigInteger with the specified BigInteger.
compareTo(Object) - Method in class java.sql.Timestamp
Compares this Timestamp to another Object.
compareTo(Object) - Method in class java.math.BigInteger
Compares this BigInteger with the specified Object.
compareTo(Object) - Method in class java.math.BigDecimal
Compares this BigDecimal with the specified Object.
compareTo(Timestamp) - Method in class java.sql.Timestamp
Compares two Timestamps for ordering.
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.
connect(String, Properties) - Method in interface java.sql.Driver
Attempts to make a database connection to the given URL.
Connection - interface java.sql.Connection.
A connection (session) with a specific database.
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.
ConnectionEvent - class javax.sql.ConnectionEvent.
An Event object that provides information about the source of a connection-related event.
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.
ConnectionEventListener - interface javax.sql.ConnectionEventListener.
An object that registers to be notified of events generated by a PooledConnection object.
ConnectionPoolDataSource - interface javax.sql.ConnectionPoolDataSource.
A factory for PooledConnection objects.
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.
cursorMoved(RowSetEvent) - Method in interface javax.sql.RowSetListener
Notifies registered listeners that a RowSet object's cursor has moved.

D

DatabaseMetaData - interface java.sql.DatabaseMetaData.
Comprehensive information about the database as a whole.
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.
DATALINK - Static variable in class java.sql.Types
The constant in the Java programming language, somtimes referred to as a type code, that identifies the generic SQL type DATALINK.
DataSource - interface javax.sql.DataSource.
A factory for connections to the physical data source that this DataSource object represents.
DataTruncation - exception java.sql.DataTruncation.
An exception that reports a DataTruncation warning (on reads) or throws a DataTruncation exception (on writes) when JDBC unexpectedly truncates a data value.
DataTruncation(int, boolean, boolean, int, int) - Constructor for class java.sql.DataTruncation
Creates a DataTruncation object with the SQLState initialized to 01004, the reason set to "Data truncation", the vendorCode set to the SQLException default, and the other fields set to the given values.
Date - class java.sql.Date.
A thin wrapper around a millisecond value that allows JDBC to identify this as an SQL DATE value.
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.
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.
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.
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.
deregisterDriver(Driver) - Static method in class java.sql.DriverManager
Drops a driver from the DriverManager's list.
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.
divide(BigDecimal, int) - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (this / val), and whose scale is this.scale().
divide(BigDecimal, int, int) - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (this / val), and whose scale is as specified.
divide(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this / val).
divideAndRemainder(BigInteger) - Method in class java.math.BigInteger
Returns an array of two BigIntegers containing (this / val) followed by (this % val).
doesMaxRowSizeIncludeBlobs() - Method in interface java.sql.DatabaseMetaData
Retrieves whether the return value for the method getMaxRowSize includes the SQL data types LONGVARCHAR and LONGVARBINARY.
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.
doubleValue() - Method in class java.math.BigInteger
Converts this BigInteger to a double.
doubleValue() - Method in class java.math.BigDecimal
Converts this BigDecimal to a double.
Driver - interface java.sql.Driver.
The interface that every driver class must implement.
DriverManager - class java.sql.DriverManager.
The basic service for managing a set of JDBC drivers.
NOTE: The DataSource interface, new in the JDBC 2.0 API, provides another way to connect to a data source.
DriverPropertyInfo - class java.sql.DriverPropertyInfo.
Driver properties for making a connection.
DriverPropertyInfo(String, String) - Constructor for class java.sql.DriverPropertyInfo
Constructs a DriverPropertyInfo object with a name and value; other members default to their initial values.

E

equals(Object) - Method in class java.sql.Timestamp
Tests to see if this Timestamp object is equal to the given object.
equals(Object) - Method in class java.math.BigInteger
Compares this BigInteger with the specified Object for equality.
equals(Object) - Method in class java.math.BigDecimal
Compares this BigDecimal with the specified Object for equality.
equals(Timestamp) - Method in class java.sql.Timestamp
Tests to see if this Timestamp object is equal to the given Timestamp object.
EXECUTE_FAILED - Static variable in interface java.sql.Statement
The constant indicating that an error occured while executing a batch statement.
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.
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 INSERT, UPDATE or DELETE statement; 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

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.
findColumn(String) - Method in interface java.sql.ResultSet
Maps the given ResultSet column name to its ResultSet column index.
first() - Method in interface java.sql.ResultSet
Moves the cursor to the first row in this ResultSet object.
flipBit(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit flipped.
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.
floatValue() - Method in class java.math.BigInteger
Converts this BigInteger to a float.
floatValue() - Method in class java.math.BigDecimal
Converts this BigDecimal to a float.

G

gcd(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is the greatest common divisor of abs(this) and abs(val).
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.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(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(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) - Method in interface java.sql.Array
Retreives a slice of the SQL ARRAY value designated by this Array object, beginning with the specified index and containing up to count successive elements of the SQL array.
getArray(Map) - Method in interface java.sql.Array
Retrieves the contents of the SQL ARRAY value designated by this Array object.
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(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC ARRAY parameter as an Array object in the Java programming language.
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 structurec type that this Struct object represents.
getAttributes(Map) - Method in interface java.sql.Struct
Produces the ordered values of the attributes of the SQL structurec 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.
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.Ref
Retrieves the fully-qualified SQL name of the SQL structured type that this Ref object references.
getBaseTypeName() - Method in interface java.sql.Array
Retrieves the SQL type name of the elements in the array designated by this Array object.
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.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) - 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, int) - Method in interface java.sql.ResultSet
Deprecated.  
getBigDecimal(int, int) - Method in interface java.sql.CallableStatement
Deprecated. use getBigDecimal(int parameterIndex) or getBigDecimal(String parameterName)
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) - 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, int) - Method in interface java.sql.ResultSet
Deprecated.  
getBinaryStream() - Method in interface java.sql.Blob
Retrieves the BLOB value designated by this Blob 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 binary stream of uninterpreted bytes.
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.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(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(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.
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.
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(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC BIT 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.
getBoolean(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BIT parameter as a boolean 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(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(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.
getByte(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TINYINT parameter as a byte 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(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(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.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(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.
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(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(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.
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(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC CLOB parameter as a 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.
getClob(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC CLOB parameter 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.Statement
Retrieves the Connection object that produced this Statement object.
getConnection() - Method in interface java.sql.DatabaseMetaData
Retrieves the connection that produced this metadata object.
getConnection() - Method in interface javax.sql.RowSetInternal
Retrieves the Connection object that was passed to this RowSet object.
getConnection() - Method in interface javax.sql.PooledConnection
Creates an object handle for the physical connection that this PooledConnection object represents.
getConnection() - Method in interface javax.sql.DataSource
Attempts to establish a connection with the data source that this DataSource object represents.
getConnection(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.
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.
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 columns of the given primary key table (describe how one table imports another's key).
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 class 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.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) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC DATE parameter as a java.sql.Date object.
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(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(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) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DATE parameter as a java.sql.Date object.
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.
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.
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.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(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(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.
getDouble(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DOUBLE parameter 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 class 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 _).
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.
getFetchDirection() - Method in interface java.sql.ResultSet
Retrieves the fetch direction 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.
getFetchSize() - Method in interface java.sql.ResultSet
Retrieves the fetch size for this ResultSet object.
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(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(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.
getFloat(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC FLOAT parameter as a float in the Java programming language.
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.
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 a table's foreign key columns (the primary keys imported by a table).
getIndex() - Method in class 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.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(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(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.
getInt(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC INTEGER parameter 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.
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.XADataSource
Retrieves the maximum time in seconds that this data source can wait while attempting to connect to a data source.
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.ConnectionPoolDataSource
Retrieves the maximum time in seconds that this ConnectionPoolDataSource object will wait while attempting to connect to a database.
getLogStream() - Static method in class java.sql.DriverManager
Deprecated.  
getLogWriter() - Static method in class java.sql.DriverManager
Retrieves the log writer.
getLogWriter() - Method in interface javax.sql.XADataSource
Retrieves the log writer for this XADataSource object.
getLogWriter() - Method in interface javax.sql.DataSource
Retrieves the log writer for this DataSource object.
getLogWriter() - Method in interface javax.sql.ConnectionPoolDataSource
Retrieves the log writer for this ConnectionPoolDataSource object.
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(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(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.
getLong(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC BIGINT parameter as a long in the Java programming language.
getLowestSetBit() - Method in class java.math.BigInteger
Returns the index of the rightmost (lowest-order) one bit in this BigInteger (the number of zero bits to the right of the rightmost one bit).
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.
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.ResultSet
Retrieves the number, types and properties of this ResultSet object's columns.
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.Connection
Retrieves a DatabaseMetaData object that contains metadata about the database to which this Connection object represents a connection.
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.
getNanos() - Method in class java.sql.Timestamp
Gets this Timestamp object's nanos value.
getNextException() - Method in class java.sql.SQLException
Retrieves the exception chained to this SQLException object.
getNextWarning() - Method in class java.sql.SQLWarning
Retrieves the warning chained to this SQLWarning object.
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.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) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated parameter as an Object in the Java programming language.
getObject(int, Map) - 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(int, Map) - Method in interface java.sql.CallableStatement
Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value.
getObject(Map) - Method in interface java.sql.Ref
Retrieves the referenced object and maps it to a Java type using the given type map.
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) - Method in interface java.sql.CallableStatement
Retrieves the value of a parameter as an Object in the Java programming language.
getObject(String, Map) - 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, Map) - Method in interface java.sql.CallableStatement
Returns an object representing the value of OUT parameter i and uses map for the custom mapping of the parameter value.
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 class 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.
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.ResultSetMetaData
Get the designated column's number of decimal digits.
getPrecision(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's number of decimal digits.
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.
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 class java.sql.DataTruncation
Indicates whether or not the value was truncated on a read.
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(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(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.
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.
getResultSet() - Method in interface java.sql.Statement
Retrieves the current result as a ResultSet object.
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(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) - 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) - 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.Statement
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
getResultSetHoldability() - Method in interface java.sql.DatabaseMetaData
Retrieves the default holdability of this ResultSet 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.
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.ResultSetMetaData
Gets the designated column's number of digits to right of the decimal point.
getScale(int) - Method in interface java.sql.ParameterMetaData
Retrieves the designated parameter's number of digits to right of the decimal point.
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.
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.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(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(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.
getShort(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC SMALLINT parameter as a short in the Java programming language.
getSQLException() - Method in class javax.sql.ConnectionEvent
Retrieves the SQLException for this ConnectionEvent object.
getSQLKeywords() - Method in interface java.sql.DatabaseMetaData
Retrieves a comma-separated list of all of this database's SQL keywords that are NOT also SQL92 keywords.
getSQLState() - Method in class java.sql.SQLException
Retrieves the SQLState for this SQLException object.
getSQLStateType() - Method in interface java.sql.DatabaseMetaData
Indicates whether the SQLSTATEs returned by SQLException.getSQLState is X/Open (now known as Open Group) SQL CLI or SQL99.
getSQLTypeName() - Method in interface java.sql.Struct
Retrieves the SQL type name of the SQL structured type that this Struct object represents.
getSQLTypeName() - Method in interface java.sql.SQLData
Returns the fully-qualified name of the SQL user-defined type that this object represents.
getStatement() - Method in interface java.sql.ResultSet
Retrieves the Statement object that produced this ResultSet object.
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(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(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.
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.
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.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) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TIME parameter as a java.sql.Time object.
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(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(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) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIME parameter as a java.sql.Time object.
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.
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.
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.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) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated JDBC TIMESTAMP parameter as a java.sql.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(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(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.
getTimestamp(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC TIMESTAMP parameter as a java.sql.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.
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.
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 class 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 standard SQL 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 class 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.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(int) - Method in interface java.sql.CallableStatement
Retrieves the value of the designated 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.
getURL(String) - Method in interface java.sql.CallableStatement
Retrieves the value of a JDBC DATALINK parameter as a java.net.URL object.
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.
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.Statement
Retrieves the first warning reported by calls on this Statement 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.Connection
Retrieves the first warning reported by calls on this Connection 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

hashCode() - Method in class java.math.BigInteger
Returns the hash code for this BigInteger.
hashCode() - Method in class java.math.BigDecimal
Returns the hash code for this BigDecimal.
HOLD_CURSORS_OVER_COMMIT - Static variable in interface java.sql.ResultSet
The constant indicating that ResultSet objects should not be closed when the method Connection.commit is called.

I

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.
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.
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.
intValue() - Method in class java.math.BigInteger
Converts this BigInteger to an int.
intValue() - Method in class java.math.BigDecimal
Converts this BigDecimal to an int.
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, thus read-only.
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.
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.ResultSetMetaData
Indicates the nullability of values in the designated column.
isNullable(int) - Method in interface java.sql.ParameterMetaData
Retrieves whether null values are allowed in the designated parameter.
isProbablePrime(int) - Method in class java.math.BigInteger
Returns true if this BigInteger is probably prime, false if it's definitely composite.
isReadOnly() - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database is in read-only mode.
isReadOnly() - Method in interface java.sql.Connection
Retrieves whether this Connection object 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.ResultSetMetaData
Indicates whether values in the designated column are signed numbers.
isSigned(int) - Method in interface java.sql.ParameterMetaData
Retrieves whether values for the designated parameter can be signed numbers.
isWritable(int) - Method in interface java.sql.ResultSetMetaData
Indicates whether it is possible for a write on the designated column to succeed.

J

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.
java.math - package java.math
 
java.sql - package java.sql
 
javax.sql - package javax.sql
 
jdbcCompliant() - Method in interface java.sql.Driver
Reports whether this driver is a genuine JDBC CompliantTM 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

last() - Method in interface java.sql.ResultSet
Moves the cursor to the last row in this ResultSet object.
length() - Method in interface java.sql.Clob
Retrieves the number of characters in the CLOB value designated by this Clob object.
length() - Method in interface java.sql.Blob
Returns the number of bytes in the BLOB value designated by this Blob 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.
longValue() - Method in class java.math.BigInteger
Converts this BigInteger to a long.
longValue() - Method in class java.math.BigDecimal
Converts this BigDecimal to a long.
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.

M

max(BigDecimal) - Method in class java.math.BigDecimal
Returns the maximum of this BigDecimal and val.
max(BigInteger) - Method in class java.math.BigInteger
Returns the maximum of this BigInteger and val.
min(BigDecimal) - Method in class java.math.BigDecimal
Returns the minimum of this BigDecimal and val.
min(BigInteger) - Method in class java.math.BigInteger
Returns the minimum of this BigInteger and val.
mod(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this mod m).
modInverse(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this-1 mod m).
modPow(BigInteger, BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (thisexponent mod m).
movePointLeft(int) - Method in class java.math.BigDecimal
Returns a BigDecimal which is equivalent to this one with the decimal point moved n places to the left.
movePointRight(int) - Method in class java.math.BigDecimal
Moves the decimal point the specified number of places to the right.
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.
multiply(BigDecimal) - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (this * val), and whose scale is (this.scale() + val.scale()).
multiply(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this * val).

N

name - Variable in class java.sql.DriverPropertyInfo
The name of the property.
nativeSQL(String) - Method in interface java.sql.Connection
Converts the given SQL statement into the system's native SQL grammar.
negate() - Method in class java.math.BigInteger
Returns a BigInteger whose value is (-this).
negate() - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (-this), and whose scale is this.scale().
next() - Method in interface java.sql.ResultSet
Moves the cursor down one row from its current position.
NO_GENERATED_KEYS - Static variable in interface java.sql.Statement
The constant indicating that generated keys should not be made available for retrieval.
not() - Method in class java.math.BigInteger
Returns a BigInteger whose value is (~this).
NULL - 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 NULL.
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.
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.

O

ONE - Static variable in class java.math.BigInteger
The BigInteger constant one.
or(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this | val).
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

ParameterMetaData - interface java.sql.ParameterMetaData.
An object that can be used to get information about the types and properties of the parameters in a PreparedStatement object.
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.
PooledConnection - interface javax.sql.PooledConnection.
An object that provides hooks for connection pool management.
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(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(Clob, long) - Method in interface java.sql.Clob
Retrieves the character position at which the specified Clob object searchstr appears in this Clob object.
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.
pow(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (thisexponent).
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.
PreparedStatement - interface java.sql.PreparedStatement.
An object that represents a precompiled SQL statement.
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.
probablePrime(int, Random) - Static method in class java.math.BigInteger
Returns a positive BigInteger that is probably prime, with the specified bitLength.
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.

R

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.
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.
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.
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.
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.
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 - interface java.sql.Ref.
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.
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.
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.
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(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.
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 given Savepoint object from the current transaction.
remainder(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this % val).
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.
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.
ResultSet - interface java.sql.ResultSet.
A table of data representing a database result set, which is usually generated by executing a statement that queries the database.
ResultSetMetaData - interface java.sql.ResultSetMetaData.
An object that can be used to get information about the types and properties of the columns in a ResultSet object.
RETURN_GENERATED_KEYS - Static variable in interface java.sql.Statement
The constant indicating that generated keys should be made available for retrieval.
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.
ROUND_CEILING - Static variable in class java.math.BigDecimal
Rounding mode to round towards positive infinity.
ROUND_DOWN - Static variable in class java.math.BigDecimal
Rounding mode to round towards zero.
ROUND_FLOOR - Static variable in class java.math.BigDecimal
Rounding mode to round towards negative infinity.
ROUND_HALF_DOWN - Static variable in class java.math.BigDecimal
Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case round down.
ROUND_HALF_EVEN - Static variable in class java.math.BigDecimal
Rounding mode to round towards the "nearest neighbor" unless both neighbors are equidistant, in which case, round towards the even neighbor.
ROUND_HALF_UP - Static variable in class java.math.BigDecimal
Rounding mode to round towards "nearest neighbor" unless both neighbors are equidistant, in which case round up.
ROUND_UNNECESSARY - Static variable in class java.math.BigDecimal
Rounding mode to assert that the requested operation has an exact result, hence no rounding is necessary.
ROUND_UP - Static variable in class java.math.BigDecimal
Rounding mode to round away from zero.
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.
RowSet - interface javax.sql.RowSet.
The interface that adds support to the JDBC API for the JavaBeansTM component model.
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.
RowSetEvent - class javax.sql.RowSetEvent.
An Event object generated when an event occurs to a RowSet object.
RowSetEvent(RowSet) - Constructor for class javax.sql.RowSetEvent
Constructs a RowSetEvent object initialized with the given RowSet object.
RowSetInternal - interface javax.sql.RowSetInternal.
The interface that a RowSet object implements in order to present itself to a RowSetReader or RowSetWriter object.
RowSetListener - interface javax.sql.RowSetListener.
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 javax.sql.RowSetMetaData.
An object that contains information about the columns in a RowSet object.
RowSetReader - interface javax.sql.RowSetReader.
The facility that a disconnected RowSet object calls on to populate itself with rows of data.
RowSetWriter - interface javax.sql.RowSetWriter.
An object that implements the RowSetWriter interface, called a writer.
rowUpdated() - Method in interface java.sql.ResultSet
Retrieves whether the current row has been updated.

S

Savepoint - interface java.sql.Savepoint.
The representation of a savepoint, which is a point within the current transaction that can be referenced from the Connection.rollback method.
scale() - Method in class java.math.BigDecimal
Returns the scale of this BigDecimal.
setArray(int, Array) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given 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, 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(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, int) - 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, and thus read-only.
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.BigDeciaml value.
setBigDecimal(String, BigDecimal) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given java.math.BigDecimal value.
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(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, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given input stream, which will have the specified number of bytes.
setBit(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is equivalent to this BigInteger with the designated bit set.
setBlob(int, Blob) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given 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.
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.
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.
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.
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(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(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, int) - Method in interface java.sql.CallableStatement
Sets the designated parameter to the given Reader object, which is the given number of characters long.
setClob(int, Clob) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given 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.
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.
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.
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.
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.
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.Statement
Gives the driver a hint as to the direction in which rows will be processed in ResultSet objects created using this Statement object.
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.
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.
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.
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.
setHoldability(int) - Method in interface java.sql.Connection
Changes the 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.
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.
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 data source.
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.ConnectionPoolDataSource
Sets the maximum time in seconds that this ConnectionPoolDataSource object will wait while attempting to connect to a database.
setLogStream(PrintStream) - Static method in class java.sql.DriverManager
Deprecated.  
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.XADataSource
Sets the log writer for this XADataSource 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.ConnectionPoolDataSource
Sets the log writer for this ConnectionPoolDataSource 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.
setMaxFieldSize(int) - Method in interface java.sql.Statement
Sets the limit for the maximum number of bytes in a ResultSet column storing character or binary values to the given number of bytes.
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 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.
setNextException(SQLException) - Method in class java.sql.SQLException
Adds an SQLException object to the end of the chain.
setNextWarning(SQLWarning) - Method in class java.sql.SQLWarning
Adds an SQLWarning object to the end of the chain.
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, String) - Method in interface java.sql.CallableStatement
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(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, 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 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.
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.
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) - Method in class java.math.BigDecimal
Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to this BigDecimal's.
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.
setScale(int, int) - Method in class java.math.BigDecimal
Returns a BigDecimal whose scale is the specified value, and whose unscaled value is determined by multiplying or dividing this BigDecimal's unscaled value by the appropriate power of ten to maintain its overall value.
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.  
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.
setSigned(int, boolean) - Method in interface javax.sql.RowSetMetaData
Sets whether the designated column is a signed number.
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, String) - Method in interface java.sql.CallableStatement
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.Timestamp
Sets this Timestamp object to represent a point in time that is time milliseconds after January 1, 1970 00:00:00 GMT.
setTime(long) - Method in class java.sql.Time
Sets a Time object using a milliseconds time value.
setTime(long) - Method in class java.sql.Date
Sets an existing Date object using the given milliseconds time value.
setTime(String, Time) - Method in interface java.sql.CallableStatement
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.
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, Calendar) - Method in interface java.sql.CallableStatement
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 obejct.
setType(int) - Method in interface javax.sql.RowSet
Sets the type of this RowSet object to the given type.
setTypeMap(Map) - Method in interface java.sql.Connection
Installs the given TypeMap object as the type map for this Connection object.
setTypeMap(Map) - 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.  
setURL(int, URL) - Method in interface java.sql.PreparedStatement
Sets the designated parameter to the given java.net.URL value.
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(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.  
shiftLeft(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this << n).
shiftRight(int) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this >> n).
signum() - Method in class java.math.BigInteger
Returns the signum function of this BigInteger.
signum() - Method in class java.math.BigDecimal
Returns the signum function of this BigDecimal.
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.
SQLData - interface java.sql.SQLData.
The interface used for the custom mapping of an SQL user-defined type (UDT) to a class in the Java programming language.
SQLException - exception java.sql.SQLException.
An exception that provides information on a database access error or other errors.
SQLException() - Constructor for class java.sql.SQLException
Constructs an SQLException object; the reason field defaults to null, the SQLState field defaults to null, and the vendorCode field defaults to 0.
SQLException(String) - Constructor for class java.sql.SQLException
Constructs an SQLException object with a reason; the SQLState field defaults to null, and the vendorCode field defaults to 0.
SQLException(String, String) - Constructor for class java.sql.SQLException
Constructs an SQLException object with the given reason and SQLState; the vendorCode field defaults to 0.
SQLException(String, String, int) - Constructor for class java.sql.SQLException
Constructs a fully-specified SQLException object.
SQLInput - interface java.sql.SQLInput.
An input stream that contains a stream of values representing an instance of an SQL structured type or an SQL distinct type.
SQLOutput - interface java.sql.SQLOutput.
The output stream for writing the attributes of a user-defined type back to the database.
SQLPermission - class java.sql.SQLPermission.
The permission for which the SecurityManager will check when code that is running in an applet calls the DriverManager.setLogWriter method or the DriverManager.setLogStream (deprecated) method.
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.
sqlStateSQL99 - Static variable in interface java.sql.DatabaseMetaData
Indicates that the value is an SQL99 SQLSTATE value.
sqlStateXOpen - Static variable in interface java.sql.DatabaseMetaData
Indicates that the value is an X/Open (now know as Open Group) SQL CLI SQLSTATE value.
SQLWarning - exception java.sql.SQLWarning.
An exception that provides information on database access warnings.
SQLWarning() - Constructor for class java.sql.SQLWarning
Constructs a default SQLWarning object.
SQLWarning(String) - Constructor for class java.sql.SQLWarning
Constructs an SQLWarning object with the given value for a reason; SQLstate defaults to null, and vendorCode defaults to 0.
SQLWarning(String, String) - Constructor for class java.sql.SQLWarning
Constructs an SQLWarning object with the given reason and SQLState; the vendorCode defaults to 0.
SQLWarning(String, String, int) - Constructor for class java.sql.SQLWarning
Constructs a fully-specified SQLWarning object initialized with the given values.
Statement - interface java.sql.Statement.
The object used for executing a static SQL statement and returning the results it produces.
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.
Struct - interface java.sql.Struct.
The standard mapping in the Java programming language for an SQL structured type.
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.
subtract(BigDecimal) - Method in class java.math.BigDecimal
Returns a BigDecimal whose value is (this - val), and whose scale is max(this.scale(), val.scale()).
subtract(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this - val).
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.
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 CONVERT function between SQL types.
supportsConvert(int, int) - Method in interface java.sql.DatabaseMetaData
Retrieves whether this database supports the CONVERT for two given SQL types.
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.
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.
supportsStatementPooling() - Method in interface java.sql.DatabaseMetaData
Retrieves weather this database supports statement pooling.
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 statements.
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

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.
testBit(int) - Method in class java.math.BigInteger
Returns true if and only if the designated bit is set.
Time - class java.sql.Time.
A thin wrapper around the java.util.Date class that allows the JDBC API to identify this as an SQL TIME value.
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(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 - class java.sql.Timestamp.
A thin wrapper around java.util.Date that allows the JDBC API to identify this as an SQL TIMESTAMP value.
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(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.
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.
toBigInteger() - Method in class java.math.BigDecimal
Converts this BigDecimal to a BigInteger.
toByteArray() - Method in class java.math.BigInteger
Returns a byte array containing the two's-complement representation of this BigInteger.
toString() - Method in class java.sql.Timestamp
Formats a timestamp in JDBC timestamp escape format.
toString() - Method in class java.sql.Time
Formats a time in JDBC time escape format.
toString() - Method in class java.sql.Date
Formats a date in the date escape format yyyy-mm-dd.
toString() - Method in class java.math.BigInteger
Returns the decimal String representation of this BigInteger.
toString() - Method in class java.math.BigDecimal
Returns the string representation of this BigDecimal.
toString(int) - Method in class java.math.BigInteger
Returns the String representation of this BigInteger in the given radix.
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.
truncate(long) - Method in interface java.sql.Clob
Truncates the CLOB value that this Clob designates to have a length of len characters.
truncate(long) - Method in interface java.sql.Blob
Truncates the BLOB value that this Blob object represents to be len bytes in length.
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 made by others.
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 made by others.
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 one can base all WHERE search clauses except WHERE .
typePredChar - Static variable in interface java.sql.DatabaseMetaData
Indicates that the only WHERE search clause that can be based on this type is WHERE .
typePredNone - Static variable in interface java.sql.DatabaseMetaData
Indicates that WHERE search clauses are not supported for this type.
Types - class java.sql.Types.
The class that defines the constants that are used to identify generic SQL types, called JDBC types.
typeSearchable - Static variable in interface java.sql.DatabaseMetaData
Indicates that all WHERE search clauses can be based on this type.

U

unscaledValue() - Method in class java.math.BigDecimal
Returns a BigInteger whose value is the unscaled value of this BigDecimal.
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, int) - 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.
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, int) - 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.
updateBlob(int, Blob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Blob value.
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, int) - 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.
updateClob(int, Clob) - Method in interface java.sql.ResultSet
Updates the designated column with a java.sql.Clob value.
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.
updateNull(int) - Method in interface java.sql.ResultSet
Gives a nullable column 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(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.
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.
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.
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.
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

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.
valueOf(long) - Static method in class java.math.BigInteger
Returns a BigInteger whose value is equal to that of the specified long.
valueOf(long) - Static method in class java.math.BigDecimal
Translates a long value into a BigDecimal with a scale of zero.
valueOf(long, int) - Static method in class java.math.BigDecimal
Translates a long unscaled value and an int scale into a BigDecimal.
valueOf(String) - Static method in class java.sql.Timestamp
Converts a String object in JDBC timestamp escape format to a Timestamp value.
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.Date
Converts a string in JDBC date escape format to a Date value.
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.

W

wasNull() - Method in interface java.sql.SQLInput
Retrieves whether the last value read was 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.CallableStatement
Retrieves whether the last OUT parameter read had the value of 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.
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.
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.
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 javax.sql.XAConnection.
An object that provides support for distributed transactions.
XADataSource - interface javax.sql.XADataSource.
A factory for XAConnection objects that is used internally.
xor(BigInteger) - Method in class java.math.BigInteger
Returns a BigInteger whose value is (this ^ val).

Z

ZERO - Static variable in class java.math.BigInteger
The BigInteger constant zero.

A B C D E F G H I J K L M N O P R S T U V W X Z