- getAsciiStream(int).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of ASCII characters
and then read in chunks from the stream.
- getAsciiStream(String).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of ASCII characters
and then read in chunks from the stream.
- getAutoCommit().
Method in interface java.sql.Connection
- Get the current auto-commit state.
- getBestRowIdentifier(String, String, String, int, boolean).
Method in interface java.sql.DatabaseMetaData
- Get a description of a table's optimal set of columns that
uniquely identifies a row.
- getBigDecimal(int, int).
Method in interface java.sql.CallableStatement
-
Get the value of a NUMERIC parameter as a java.math.BigDecimal object.
- getBigDecimal(int, int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.lang.BigDecimal object.
- getBigDecimal(String, int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.lang.BigDecimal object.
- getBinaryStream(int).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of uninterpreted bytes
and then read in chunks from the stream.
- getBinaryStream(String).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of uninterpreted bytes
and then read in chunks from the stream.
- getBoolean(int).
Method in interface java.sql.CallableStatement
- Get the value of a BIT parameter as a Java boolean.
- getBoolean(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java boolean.
- getBoolean(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java boolean.
- getByte(int).
Method in interface java.sql.CallableStatement
- Get the value of a TINYINT parameter as a Java byte.
- getByte(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java byte.
- getByte(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java byte.
- getBytes(int).
Method in interface java.sql.CallableStatement
- Get the value of a SQL BINARY or VARBINARY parameter as a Java byte[]
- getBytes(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java byte array.
- getBytes(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java byte array.
- getCatalog().
Method in interface java.sql.Connection
- Return the Connection's current catalog name.
- getCatalogName(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's table's catalog name?
- getCatalogs().
Method in interface java.sql.DatabaseMetaData
- Get the catalog names available in this database.
- getCatalogSeparator().
Method in interface java.sql.DatabaseMetaData
- What's the separator between catalog and table name?
- getCatalogTerm().
Method in interface java.sql.DatabaseMetaData
- What's the database vendor's preferred term for "catalog"?
- getColumnCount().
Method in interface java.sql.ResultSetMetaData
- What's the number of columns in the ResultSet?
- getColumnDisplaySize(int).
Method in interface java.sql.ResultSetMetaData
- What's the column's normal max width in chars?
- getColumnLabel(int).
Method in interface java.sql.ResultSetMetaData
- What's the suggested column title for use in printouts and
displays?
- getColumnName(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's name?
- getColumnPrivileges(String, String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of the access rights for a table's columns.
- getColumns(String, String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of table columns available in a catalog.
- getColumnType(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's SQL type?
- getColumnTypeName(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's data source specific type name?
- getConnection(String).
Static method in class java.sql.DriverManager
- Attempt to establish a connection to the given database URL.
- getConnection(String, Properties).
Static method in class java.sql.DriverManager
- Attempt to establish a connection to the given database URL.
- getConnection(String, String, String).
Static method in class java.sql.DriverManager
- Attempt to establish a connection to the given database URL.
- getCrossReference(String, String, String, String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of the foreign key columns in the foreign key
table that reference the primary key columns of the primary key
table (describe how one table imports another's key.) This
should normally return a single foreign key/primary key pair
(most tables only import a foreign key from a table once.) They
are ordered by FKTABLE_CAT, FKTABLE_SCHEM, FKTABLE_NAME, and
KEY_SEQ.
- getCursorName().
Method in interface java.sql.ResultSet
- Get the name of the SQL cursor used by this ResultSet.
- getDatabaseProductName().
Method in interface java.sql.DatabaseMetaData
- What's the name of this database product?
- getDatabaseProductVersion().
Method in interface java.sql.DatabaseMetaData
- What's the version of this database product?
- getDataSize().
Method in class java.sql.DataTruncation
- Get the number of bytes of data that should have been transferred.
- getDate().
Method in class java.sql.Time
-
- getDate(int).
Method in interface java.sql.CallableStatement
- Get the value of a SQL DATE parameter as a java.sql.Date object
- getDate(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Date object.
- getDate(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Date object.
- getDay().
Method in class java.sql.Time
-
- getDefaultTransactionIsolation().
Method in interface java.sql.DatabaseMetaData
- What's the database's default transaction isolation level? The
values are defined in java.sql.Connection.
- getDouble(int).
Method in interface java.sql.CallableStatement
- Get the value of a DOUBLE parameter as a Java double.
- getDouble(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java double.
- getDouble(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java double.
- getDriver(String).
Static method in class java.sql.DriverManager
- Attempt to locate a driver that understands the given URL.
- getDriverMajorVersion().
Method in interface java.sql.DatabaseMetaData
- What's this JDBC driver's major version number?
- getDriverMinorVersion().
Method in interface java.sql.DatabaseMetaData
- What's this JDBC driver's minor version number?
- getDriverName().
Method in interface java.sql.DatabaseMetaData
- What's the name of this JDBC driver?
- getDrivers().
Static method in class java.sql.DriverManager
- Return an Enumeration of all the currently loaded JDBC drivers
which the current caller has access to.
- getDriverVersion().
Method in interface java.sql.DatabaseMetaData
- What's the version of this JDBC driver?
- getErrorCode().
Method in class java.sql.SQLException
- Get the vendor specific exception code
- getExportedKeys(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of the foreign key columns that reference a
table's primary key columns (the foreign keys exported by a
table).
- getExtraNameCharacters().
Method in interface java.sql.DatabaseMetaData
- Get all the "extra" characters that can be used in unquoted
identifier names (those beyond a-z, A-Z, 0-9 and _).
- getFloat(int).
Method in interface java.sql.CallableStatement
- Get the value of a FLOAT parameter as a Java float.
- getFloat(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java float.
- getFloat(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java float.
- getHours().
Method in class java.sql.Date
-
- getIdentifierQuoteString().
Method in interface java.sql.DatabaseMetaData
- What's the string used to quote SQL identifiers?
This returns a space " " if identifier quoting isn't supported.
- getImportedKeys(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get 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
- Get the index of the column or parameter that was truncated.
- getIndexInfo(String, String, String, boolean, boolean).
Method in interface java.sql.DatabaseMetaData
- Get a description of a table's indices and statistics.
- getInt(int).
Method in interface java.sql.CallableStatement
- Get the value of an INTEGER parameter as a Java int.
- getInt(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java int.
- getInt(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java int.
- getLoginTimeout().
Static method in class java.sql.DriverManager
- Get the maximum time in seconds that all drivers can wait
when attempting to log in to a database.
- getLogStream().
Static method in class java.sql.DriverManager
- Get the logging/tracing PrintStream that is used by the DriverManager
and all drivers.
- getLong(int).
Method in interface java.sql.CallableStatement
- Get the value of a BIGINT parameter as a Java long.
- getLong(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java long.
- getLong(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java long.
- getMajorVersion().
Method in interface java.sql.Driver
- Get the driver's major version number.
- getMaxBinaryLiteralLength().
Method in interface java.sql.DatabaseMetaData
- How many hex characters can you have in an inline binary literal?
- getMaxCatalogNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a catalog name?
- getMaxCharLiteralLength().
Method in interface java.sql.DatabaseMetaData
- What's the max length for a character literal?
- getMaxColumnNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the limit on column name length?
- getMaxColumnsInGroupBy().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of columns in a "GROUP BY" clause?
- getMaxColumnsInIndex().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of columns allowed in an index?
- getMaxColumnsInOrderBy().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of columns in an "ORDER BY" clause?
- getMaxColumnsInSelect().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of columns in a "SELECT" list?
- getMaxColumnsInTable().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of columns in a table?
- getMaxConnections().
Method in interface java.sql.DatabaseMetaData
- How many active connections can we have at a time to this database?
- getMaxCursorNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum cursor name length?
- getMaxFieldSize().
Method in interface java.sql.Statement
- The maxFieldSize limit (in bytes) is the maximum amount of data
returned for any column value; it only applies to BINARY,
VARBINARY, LONGVARBINARY, CHAR, VARCHAR, and LONGVARCHAR
columns.
- getMaxIndexLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of an index (in bytes)?
- getMaxProcedureNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a procedure name?
- getMaxRows().
Method in interface java.sql.Statement
- The maxRows limit is the maximum number of rows that a
ResultSet can contain.
- getMaxRowSize().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a single row?
- getMaxSchemaNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length allowed for a schema name?
- getMaxStatementLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a SQL statement?
- getMaxStatements().
Method in interface java.sql.DatabaseMetaData
- How many active statements can we have open at one time to this
database?
- getMaxTableNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a table name?
- getMaxTablesInSelect().
Method in interface java.sql.DatabaseMetaData
- What's the maximum number of tables in a SELECT?
- getMaxUserNameLength().
Method in interface java.sql.DatabaseMetaData
- What's the maximum length of a user name?
- getMetaData().
Method in interface java.sql.Connection
- A Connection's database is able to provide information
describing its tables, its supported SQL grammar, its stored
procedures, the capabilities of this connection, etc.
- getMetaData().
Method in interface java.sql.ResultSet
- The number, types and properties of a ResultSet's columns
are provided by the getMetaData method.
- getMinorVersion().
Method in interface java.sql.Driver
- Get the driver's minor version number.
- getMinutes().
Method in class java.sql.Date
-
- getMonth().
Method in class java.sql.Time
-
- getMoreResults().
Method in interface java.sql.Statement
- getMoreResults moves to a Statement's next result.
- getNanos().
Method in class java.sql.Timestamp
- Get the Timestamp's nanos value
- getNextException().
Method in class java.sql.SQLException
- Get the exception chained to this one.
- getNextWarning().
Method in class java.sql.SQLWarning
- Get the warning chained to this one
- getNumericFunctions().
Method in interface java.sql.DatabaseMetaData
- Get a comma separated list of math functions.
- getObject(int).
Method in interface java.sql.CallableStatement
- Get the value of a parameter as a Java object.
- getObject(int).
Method in interface java.sql.ResultSet
-
Get the value of a column in the current row as a Java object.
- getObject(String).
Method in interface java.sql.ResultSet
-
Get the value of a column in the current row as a Java object.
- getParameter().
Method in class java.sql.DataTruncation
- Is this a truncated parameter value?
- getPrecision(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's number of decimal digits?
- getPrimaryKeys(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of a table's primary key columns.
- getProcedureColumns(String, String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of a catalog's stored procedure parameters
and result columns.
- getProcedures(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of stored procedures available in a
catalog.
- getProcedureTerm().
Method in interface java.sql.DatabaseMetaData
- What's the database vendor's preferred term for "procedure"?
- getPropertyInfo(String, Properties).
Method in interface java.sql.Driver
-
The getPropertyInfo method is intended to allow a generic GUI tool to
discover what properties it should prompt a human for in order to get
enough information to connect to a database.
- getQueryTimeout().
Method in interface java.sql.Statement
- The queryTimeout limit is the number of seconds the driver will
wait for a Statement to execute.
- getRead().
Method in class java.sql.DataTruncation
- Was this a read truncation?
- getResultSet().
Method in interface java.sql.Statement
- getResultSet returns the current result as a ResultSet.
- getScale(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's number of digits to right of the decimal point?
- getSchemaName(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's table's schema?
- getSchemas().
Method in interface java.sql.DatabaseMetaData
- Get the schema names available in this database.
- getSchemaTerm().
Method in interface java.sql.DatabaseMetaData
- What's the database vendor's preferred term for "schema"?
- getSearchStringEscape().
Method in interface java.sql.DatabaseMetaData
- This is the string that can be used to escape '_' or '%' in
the string pattern style catalog search parameters.
- getSeconds().
Method in class java.sql.Date
-
- getShort(int).
Method in interface java.sql.CallableStatement
- Get the value of a SMALLINT parameter as a Java short.
- getShort(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java short.
- getShort(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java short.
- getSQLKeywords().
Method in interface java.sql.DatabaseMetaData
- Get a comma separated list of all a database's SQL keywords
that are NOT also SQL92 keywords.
- getSQLState().
Method in class java.sql.SQLException
- Get the SQLState
- getString(int).
Method in interface java.sql.CallableStatement
- Get the value of a CHAR, VARCHAR, or LONGVARCHAR parameter as a Java String.
- getString(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java String.
- getString(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a Java String.
- getStringFunctions().
Method in interface java.sql.DatabaseMetaData
- Get a comma separated list of string functions.
- getSystemFunctions().
Method in interface java.sql.DatabaseMetaData
- Get a comma separated list of system functions.
- getTableName(int).
Method in interface java.sql.ResultSetMetaData
- What's a column's table name?
- getTablePrivileges(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of the access rights for each table available
in a catalog.
- getTables(String, String, String, String[]).
Method in interface java.sql.DatabaseMetaData
- Get a description of tables available in a catalog.
- getTableTypes().
Method in interface java.sql.DatabaseMetaData
- Get the table types available in this database.
- getTime(int).
Method in interface java.sql.CallableStatement
- Get the value of a SQL TIME parameter as a java.sql.Time object.
- getTime(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Time object.
- getTime(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Time object.
- getTimeDateFunctions().
Method in interface java.sql.DatabaseMetaData
- Get a comma separated list of time and date functions.
- getTimestamp(int).
Method in interface java.sql.CallableStatement
- Get the value of a SQL TIMESTAMP parameter as a java.sql.Timestamp object.
- getTimestamp(int).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Timestamp object.
- getTimestamp(String).
Method in interface java.sql.ResultSet
- Get the value of a column in the current row as a java.sql.Timestamp object.
- getTransactionIsolation().
Method in interface java.sql.Connection
- Get this Connection's current transaction isolation mode.
- getTransferSize().
Method in class java.sql.DataTruncation
- Get the number of bytes of data actually transferred.
- getTypeInfo().
Method in interface java.sql.DatabaseMetaData
- Get a description of all the standard SQL types supported by
this database.
- getUnicodeStream(int).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of Unicode characters
and then read in chunks from the stream.
- getUnicodeStream(String).
Method in interface java.sql.ResultSet
- A column value can be retrieved as a stream of Unicode characters
and then read in chunks from the stream.
- getUpdateCount().
Method in interface java.sql.Statement
- getUpdateCount returns the current result as an update count;
if the result is a ResultSet or there are no more results, -1
is returned.
- getURL().
Method in interface java.sql.DatabaseMetaData
- What's the url for this database?
- getUserName().
Method in interface java.sql.DatabaseMetaData
- What's our user name as known to the database?
- getVersionColumns(String, String, String).
Method in interface java.sql.DatabaseMetaData
- Get a description of a table's columns that are automatically
updated when any value in a row is updated.
- getWarnings().
Method in interface java.sql.Connection
- The first warning reported by calls on this Connection is
returned.
- getWarnings().
Method in interface java.sql.ResultSet
-
The first warning reported by calls on this ResultSet is
returned.
- getWarnings().
Method in interface java.sql.Statement
- The first warning reported by calls on this Statement is
returned.
- getYear().
Method in class java.sql.Time
-