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

A

ABBREVIATED_TIMEZONES - Static variable in class com.mysql.jdbc.TimeUtil
 
AssertionFailedException - exception com.mysql.jdbc.AssertionFailedException.
Assertions for empty code paths that should never be executed.
AssertionFailedException(Exception) - Constructor for class com.mysql.jdbc.AssertionFailedException
Creates an AssertionFailedException for the given exception that should never have been thrown.
absolute(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
absolute(int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
acceptsURL(String) - Method in class com.mysql.jdbc.NonRegisteringDriver
Typically, drivers will return true if they understand the subprotocol specified in the URL and false if they don't.
addBatch() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
addBatch(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
addBatch() - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Add a set of parameters to the batch.
addBatch(String) - Method in class com.mysql.jdbc.Statement
DOCUMENT ME!
addRow(byte[][]) - Method in interface com.mysql.jdbc.RowData
Adds a row to this row data.
addRow(byte[][]) - Method in class com.mysql.jdbc.RowDataDynamic
Adds a row to this row data.
addRow(byte[][]) - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
addWarning(SQLWarning) - Method in class com.mysql.jdbc.Statement
 
afterHandshake() - Method in class com.mysql.jdbc.NamedPipeSocketFactory
 
afterHandshake() - Method in interface com.mysql.jdbc.SocketFactory
Called by the driver after issuing the MySQL protocol handshake and reading the results of the handshake.
afterHandshake() - Method in class com.mysql.jdbc.StandardSocketFactory
Called by the driver after issuing the MySQL protocol handshake and reading the results of the handshake.
afterLast() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
afterLast() - Method in interface com.mysql.jdbc.RowData
Moves to after last.
afterLast() - Method in class com.mysql.jdbc.RowDataDynamic
Moves to after last.
afterLast() - Method in class com.mysql.jdbc.RowDataStatic
Moves to after last.
afterLast() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
allProceduresAreCallable() - Method in class com.mysql.jdbc.DatabaseMetaData
Can all the procedures returned by getProcedures be called by the current user?
allTablesAreSelectable() - Method in class com.mysql.jdbc.DatabaseMetaData
Can all the tables returned by getTable be SELECTed by the current user?
allowLoadLocalInfile() - Method in class com.mysql.jdbc.Connection
Allow use of LOAD LOCAL INFILE?
alwaysClearStream() - Method in class com.mysql.jdbc.Connection
 
available() - Method in class com.mysql.jdbc.CompressedInputStream
 
available() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 

B

Blob - class com.mysql.jdbc.Blob.
The representation (mapping) in the JavaTM programming language of an SQL BLOB value.
Blob(byte[]) - Constructor for class com.mysql.jdbc.Blob
Creates a BLOB encapsulating the given binary data
Blob(byte[], ResultSet, int) - Constructor for class com.mysql.jdbc.Blob
Creates an updatable BLOB that can update in-place (not implemented yet).
Buffer - class com.mysql.jdbc.Buffer.
Buffer contains code to read and write packets from/to the MySQL server.
Buffer(byte[]) - Constructor for class com.mysql.jdbc.Buffer
 
Buffer(int) - Constructor for class com.mysql.jdbc.Buffer
 
batchedArgs - Variable in class com.mysql.jdbc.Statement
Holds batched commands
beforeFirst() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
beforeFirst() - Method in interface com.mysql.jdbc.RowData
Moves to before first.
beforeFirst() - Method in class com.mysql.jdbc.RowDataDynamic
Moves to before first.
beforeFirst() - Method in class com.mysql.jdbc.RowDataStatic
Moves to before first.
beforeFirst() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
beforeHandshake() - Method in class com.mysql.jdbc.NamedPipeSocketFactory
 
beforeHandshake() - Method in interface com.mysql.jdbc.SocketFactory
Called by the driver before issuing the MySQL protocol handshake.
beforeHandshake() - Method in class com.mysql.jdbc.StandardSocketFactory
Called by the driver before issuing the MySQL protocol handshake.
beforeLast() - Method in interface com.mysql.jdbc.RowData
Moves to before last so next el is the last el.
beforeLast() - Method in class com.mysql.jdbc.RowDataDynamic
Moves to before last so next el is the last el.
beforeLast() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
buildIndexMapping() - Method in class com.mysql.jdbc.ResultSet
Builds a hash between column names and their indices for fast retrieval.

C

CHANGE_USER - Static variable in class com.mysql.jdbc.MysqlDefs
 
COMP_HEADER_LENGTH - Static variable in class com.mysql.jdbc.MysqlIO
 
COM_BINLOG_DUMP - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_CHANGE_USER - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_CONNECT_OUT - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_EXECUTE - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_LONG_DATA - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_PREPARE - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_REGISTER_SLAVE - Static variable in class com.mysql.jdbc.MysqlDefs
 
COM_TABLE_DUMP - Static variable in class com.mysql.jdbc.MysqlDefs
 
CONNECT - Static variable in class com.mysql.jdbc.MysqlDefs
 
CREATE_DB - Static variable in class com.mysql.jdbc.MysqlDefs
 
CharsetMapping - class com.mysql.jdbc.CharsetMapping.
Mapping between MySQL charset names and Java charset names.
CharsetMapping() - Constructor for class com.mysql.jdbc.CharsetMapping
 
Clob - class com.mysql.jdbc.Clob.
Simplistic implementation of java.sql.Clob for MySQL Connector/J
Clob(String) - Constructor for class com.mysql.jdbc.Clob
 
CompressedInputStream - class com.mysql.jdbc.CompressedInputStream.
Used to de-compress packets from the MySQL server when protocol-level compression is turned on.
CompressedInputStream(InputStream) - Constructor for class com.mysql.jdbc.CompressedInputStream
Creates a new CompressedInputStream that reads the given stream from the server.
Connection - class com.mysql.jdbc.Connection.
A Connection represents a session with a specific database.
Connection(String, int, Properties, String, String, NonRegisteringDriver) - Constructor for class com.mysql.jdbc.Connection
Creates a connection to a MySQL Server.
Connection.UltraDevWorkAround - class com.mysql.jdbc.Connection.UltraDevWorkAround.
Wrapper class for UltraDev CallableStatements that are really PreparedStatments.
Connection.UltraDevWorkAround(PreparedStatement) - Constructor for class com.mysql.jdbc.Connection.UltraDevWorkAround
 
cancel() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
cancel() - Method in class com.mysql.jdbc.Statement
Cancel can be used by one thread to cancel a statement that is being executed by another thread.
cancelRowUpdates() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 The cancelRowUpdates() method may be called after calling an updateXXX() method(s) and before calling updateRow() to rollback the updates made to a row.
cancelRowUpdates() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 The cancelRowUpdates() method may be called after calling an updateXXX() method(s) and before calling updateRow() to rollback the updates made to a row.
capitalizeDBMDTypes() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
catalog - Variable in class com.mysql.jdbc.ResultSet
The catalog that was in use when we were created
changeTimezone(Connection, Timestamp, TimeZone, TimeZone) - Static method in class com.mysql.jdbc.TimeUtil
Change the given timestamp from one timezone to another
changeTimezone(Connection, Time, TimeZone, TimeZone) - Static method in class com.mysql.jdbc.TimeUtil
Change the given times from one timezone to another
changeUser(String, String) - Method in class com.mysql.jdbc.Connection
Changes the user on this connection by performing a re-authentication.
changeUser(String, String, String) - Method in class com.mysql.jdbc.MysqlIO
Re-authenticates as the given user and password
charConverter - Variable in class com.mysql.jdbc.Statement
The character converter to use (if available)
charEncoding - Variable in class com.mysql.jdbc.Statement
The character encoding to use (if available)
checkClosed() - Method in class com.mysql.jdbc.ResultSet
Ensures that the result set is not closed
checkClosed() - Method in class com.mysql.jdbc.Statement
Checks if closed() has been called, and throws an exception if so
checkForCharsetMismatch() - Method in class com.mysql.jdbc.MysqlIO
Determines if the database charset is the same as the platform charset
checkLicenseType(Map) - Static method in class com.mysql.jdbc.LicenseConfiguration
Used in commercially-licensed clients that require connections to commercially-licensed servers as part of the licensing terms.
checkRowPos() - Method in class com.mysql.jdbc.ResultSet
Ensures that the cursor is positioned on a valid row and that the result set is not closed
checkRowPos() - Method in class com.mysql.jdbc.UpdatableResultSet
 
clear() - Method in class com.mysql.jdbc.Buffer
 
clearBatch() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
clearBatch() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Make the set of commands in the current batch empty.
clearParameters() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
clearParameters() - Method in class com.mysql.jdbc.PreparedStatement
In general, parameter values remain in force for repeated used of a Statement.
clearWarnings() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
clearWarnings() - Method in class com.mysql.jdbc.Connection
After this call, getWarnings returns null until a new warning is reported for this connection.
clearWarnings() - Method in class com.mysql.jdbc.ResultSet
After this call, getWarnings returns null until a new warning is reported for this ResultSet
clearWarnings() - Method in class com.mysql.jdbc.Statement
After this call, getWarnings returns null until a new warning is reported for this Statement.
clearWarnings() - Method in class com.mysql.jdbc.UpdatableResultSet
After this call, getWarnings returns null until a new warning is reported for this ResultSet
close() - Method in class com.mysql.jdbc.CompressedInputStream
 
close() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
close() - Method in class com.mysql.jdbc.Connection
In some cases, it is desirable to immediately release a Connection's database and JDBC resources instead of waiting for them to be automatically released (cant think why off the top of my head) Note: A Connection is automatically closed when it is garbage collected.
close() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket
 
close() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
close() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
close() - Method in class com.mysql.jdbc.PreparedStatement
Closes this prepared statement and releases all resources.
close() - Method in class com.mysql.jdbc.ResultSet
In some cases, it is desirable to immediately release a ResultSet database and JDBC resources instead of waiting for this to happen when it is automatically closed.
close() - Method in interface com.mysql.jdbc.RowData
We're done.
close() - Method in class com.mysql.jdbc.RowDataDynamic
We're done.
close() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
close() - Method in class com.mysql.jdbc.Statement
In many cases, it is desirable to immediately release a Statement's database and JDBC resources instead of waiting for this to happen when it is automatically closed.
close() - Method in class com.mysql.jdbc.UpdatableResultSet
In some cases, it is desirable to immediately release a ResultSet database and JDBC resources instead of waiting for this to happen when it is automatically closed.
close() - Method in class com.mysql.jdbc.WatchableOutputStream
 
close() - Method in class com.mysql.jdbc.WatchableWriter
 
closeAllOpenResults() - Method in class com.mysql.jdbc.Statement
Close any open result sets that have been 'held open'
closeStreamer(RowData) - Method in class com.mysql.jdbc.MysqlIO
 
columnNameToIndex - Variable in class com.mysql.jdbc.ResultSet
Map column names (and all of their permutations) to column indices
com.mysql.jdbc - package com.mysql.jdbc
 
commit() - Method in class com.mysql.jdbc.Connection
The method commit() makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by the Connection.
connect(String, int, Properties) - Method in class com.mysql.jdbc.NamedPipeSocketFactory
 
connect(String, Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Try to make a database connection to the given URL.
connect(String, int, Properties) - Method in interface com.mysql.jdbc.SocketFactory
Creates a new socket using the given properties.
connect(String, int, Properties) - Method in class com.mysql.jdbc.StandardSocketFactory
 
connection - Variable in class com.mysql.jdbc.ResultSet
The Connection instance that created us
connection - Variable in class com.mysql.jdbc.Statement
The connection that created us
continueBatchOnError() - Method in class com.mysql.jdbc.Connection
 
createKeyFromOldPassword(String) - Static method in class com.mysql.jdbc.Security
Creates key from old password to decode scramble Used in 4.1 authentication with passwords stored pre-4.1 hashing.
createNewIO(boolean) - Method in class com.mysql.jdbc.Connection
Creates an IO channel to the server
createStatement(int, int) - Method in class com.mysql.jdbc.Connection
JDBC 2.0 Same as createStatement() above, but allows the default result set type and result set concurrency type to be overridden.
createStatement() - Method in class com.mysql.jdbc.Connection
SQL statements without parameters are normally executed using Statement objects.
createStatement(int, int, int) - Method in class com.mysql.jdbc.Connection
 
createStreamingResultSet() - Method in class com.mysql.jdbc.Statement
We only stream result sets when they are forward-only, read-only, and the fetch size has been set to Integer.MIN_VALUE
currentCatalog - Variable in class com.mysql.jdbc.Statement
The catalog in use
currentRow - Variable in class com.mysql.jdbc.ResultSet
The current row #, -1 == before start of result set

D

DEBUG - Static variable in class com.mysql.jdbc.MysqlDefs
 
DEBUG - Static variable in class com.mysql.jdbc.NonRegisteringDriver
Should the driver generate debugging output?
DELAYED_INSERT - Static variable in class com.mysql.jdbc.MysqlDefs
 
DROP_DB - Static variable in class com.mysql.jdbc.MysqlDefs
 
DatabaseMetaData - class com.mysql.jdbc.DatabaseMetaData.
JDBC Interface to Mysql functions
DatabaseMetaData(Connection, String) - Constructor for class com.mysql.jdbc.DatabaseMetaData
Creates a new DatabaseMetaData object.
Debug - class com.mysql.jdbc.Debug.
The Debug class allows debug messages on a per-class basis.
Debug() - Constructor for class com.mysql.jdbc.Debug
 
Driver - class com.mysql.jdbc.Driver.
The Java SQL framework allows for multiple database drivers.
Driver() - Constructor for class com.mysql.jdbc.Driver
Construct a new driver and register it with DriverManager
Driver - class org.gjt.mm.mysql.Driver.
Here for backwards compatibility with MM.MySQL
Driver() - Constructor for class org.gjt.mm.mysql.Driver
Creates a new instance of Driver
dataDefinitionCausesTransactionCommit() - Method in class com.mysql.jdbc.DatabaseMetaData
Does a data definition statement within a transaction force the transaction to commit?
dataDefinitionIgnoredInTransactions() - Method in class com.mysql.jdbc.DatabaseMetaData
Is a data definition statement within a transaction ignored?
database(Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Returns the database property from props
deleteRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Delete the current row from the result set and the underlying database.
deleteRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Delete the current row from the result set and the underlying database.
deletesAreDetected(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Determine whether or not a visible row delete can be detected by calling ResultSet.rowDeleted().
doEscapeProcessing - Variable in class com.mysql.jdbc.Statement
Should we process escape codes?
doHandshake(String, String, String) - Method in class com.mysql.jdbc.MysqlIO
Initialize communications with the MySQL server.
doesMaxRowSizeIncludeBlobs() - Method in class com.mysql.jdbc.DatabaseMetaData
Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY blobs?
doingUpdates - Variable in class com.mysql.jdbc.ResultSet
Are we in the middle of doing updates to the current row?
dump() - Method in class com.mysql.jdbc.Buffer
 
dumpAsHex(byte[], int) - Static method in class com.mysql.jdbc.StringUtils
Dumps the given bytes to STDOUT as a hex dump (up to length bytes).
dumpHeader() - Method in class com.mysql.jdbc.Buffer
 
dumpNBytes(int, int) - Method in class com.mysql.jdbc.Buffer
 

E

ER_WARNING_NOT_COMPLETE_ROLLBACK - Static variable in class com.mysql.jdbc.MysqlDefs
 
EscapeProcessor - class com.mysql.jdbc.EscapeProcessor.
 
EscapeProcessor() - Constructor for class com.mysql.jdbc.EscapeProcessor
 
EscapeTokenizer - class com.mysql.jdbc.EscapeTokenizer.
EscapeTokenizer breaks up an SQL statement into SQL and escape code parts.
EscapeTokenizer(String) - Constructor for class com.mysql.jdbc.EscapeTokenizer
Creates a new EscapeTokenizer object.
ensureCapacity(int) - Method in class com.mysql.jdbc.Buffer
 
escapeEasternUnicodeByteStream(byte[], String, int, int) - Static method in class com.mysql.jdbc.StringUtils
Unfortunately, SJIS has 0x5c as a high byte in some of its double-byte characters, so we need to escape it.
escapeSQL(String, boolean) - Static method in class com.mysql.jdbc.EscapeProcessor
Escape process one string
execSQL(String, int, String) - Method in class com.mysql.jdbc.Connection
Send a query to the server.
execSQL(String, int, int, boolean, boolean, String) - Method in class com.mysql.jdbc.Connection
 
execSQL(String, int, Buffer, String) - Method in class com.mysql.jdbc.Connection
 
execSQL(String, int, Buffer, int, String) - Method in class com.mysql.jdbc.Connection
 
execSQL(String, int, Buffer, int, boolean, boolean, String) - Method in class com.mysql.jdbc.Connection
 
execute() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
execute(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
execute(String, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
execute(String, int[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
execute(String, String[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
execute() - Method in class com.mysql.jdbc.PreparedStatement
Some prepared statements return multiple results; the execute method handles these complex statements as well as the simpler form of statements handled by executeQuery and executeUpdate
execute(String) - Method in class com.mysql.jdbc.Statement
Execute a SQL statement that may return multiple results.
execute(String, int) - Method in class com.mysql.jdbc.Statement
 
execute(String, int[]) - Method in class com.mysql.jdbc.Statement
 
execute(String, String[]) - Method in class com.mysql.jdbc.Statement
 
executeBatch() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeBatch() - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Submit a batch of commands to the database for execution.
executeBatch() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Submit a batch of commands to the database for execution.
executeQuery() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeQuery(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeQuery() - Method in class com.mysql.jdbc.PreparedStatement
A Prepared SQL query is executed and its ResultSet is returned
executeQuery(String) - Method in class com.mysql.jdbc.Statement
Execute a SQL statement that retruns a single ResultSet
executeUpdate() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeUpdate(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeUpdate(String, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeUpdate(String, int[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeUpdate(String, String[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
executeUpdate() - Method in class com.mysql.jdbc.PreparedStatement
Execute a SQL INSERT, UPDATE or DELETE statement.
executeUpdate(byte[][], InputStream[], boolean[], int[], boolean[]) - Method in class com.mysql.jdbc.PreparedStatement
Added to allow batch-updates
executeUpdate(String) - Method in class com.mysql.jdbc.Statement
Execute a SQL INSERT, UPDATE or DELETE statement.
executeUpdate(String, int) - Method in class com.mysql.jdbc.Statement
 
executeUpdate(String, int[]) - Method in class com.mysql.jdbc.Statement
 
executeUpdate(String, String[]) - Method in class com.mysql.jdbc.Statement
 
extractForeignKeyForTable(ArrayList, ResultSet, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Extracts foreign key info for one table.
extractForeignKeyFromCreateTable(Connection, DatabaseMetaData, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Creates a result set similar enough to 'SHOW TABLE STATUS' to allow the same code to work on extracting the foreign key data

F

FIELD_LIST - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_BLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_DATE - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_DATETIME - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_DECIMAL - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_DOUBLE - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_ENUM - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_FLOAT - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_INT24 - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_LONG - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_LONGLONG - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_LONG_BLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_MEDIUM_BLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_NEWDATE - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_NULL - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_SET - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_SHORT - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_TIME - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_TIMESTAMP - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_TINY - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_TINY_BLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_VAR_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
FIELD_TYPE_YEAR - Static variable in class com.mysql.jdbc.MysqlDefs
 
Field - class com.mysql.jdbc.Field.
Field is a class used to describe fields in a ResultSet
Field(String, String, int, long) - Constructor for class com.mysql.jdbc.Field
Constructor used by DatabaseMetaData methods.
Field(Connection, byte[], int, int, int, int, long, int, short, int) - Constructor for class com.mysql.jdbc.Field
Constructor used when communicating with pre 4.1 servers
Field(Connection, byte[], int, int, int, int, int, int, int, int, int, int, long, int, short, int, int, int, int) - Constructor for class com.mysql.jdbc.Field
Constructor used when communicating with 4.1 and newer servers
fastSkipLenString() - Method in class com.mysql.jdbc.Buffer
Skip over a length-encoded string
fetchDirection - Variable in class com.mysql.jdbc.ResultSet
The direction to fetch rows (always FETCH_FORWARD)
fetchSize - Variable in class com.mysql.jdbc.ResultSet
The number of rows to fetch in one go...
fields - Variable in class com.mysql.jdbc.ResultSet
The fields for this result set
fields - Variable in class com.mysql.jdbc.ResultSetMetaData
 
finalize() - Method in class com.mysql.jdbc.Connection
Cleanup the connection.
findColumn(String) - Method in class com.mysql.jdbc.ResultSet
Map a ResultSet column name to a ResultSet column index
first() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
first() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
firstCharOfQuery - Variable in class com.mysql.jdbc.ResultSet
First character of the query that created this result set...Used to determine whether or not to parse server info messages in certain circumstances.
firstNonWsCharUc(String) - Static method in class com.mysql.jdbc.StringUtils
Returns the first non whitespace char, converted to upper case
firstStmtChar - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
forceClose() - Method in class com.mysql.jdbc.MysqlIO
Forcibly closes the underlying socket to MySQL.
foundLimitClause - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
foundLoadData - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
fullColumnNameToIndex - Variable in class com.mysql.jdbc.ResultSet
Map of fully-specified column names to column indices

G

GMT_TIMEZONE - Static variable in class com.mysql.jdbc.TimeUtil
 
generateStatements() - Method in class com.mysql.jdbc.UpdatableResultSet
Figure out whether or not this ResultSet is updateable, and if so, generate the PreparedStatements to support updates.
get(String) - Static method in class com.mysql.jdbc.SQLError
 
getArray(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getArray(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getArray(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get an array column.
getArray(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get an array column.
getAsciiStream() - Method in class com.mysql.jdbc.Clob
 
getAsciiStream(int) - Method in class com.mysql.jdbc.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 class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getAt(int) - Method in interface com.mysql.jdbc.RowData
Only works on non dynamic result sets.
getAt(int) - Method in class com.mysql.jdbc.RowDataDynamic
Only works on non dynamic result sets.
getAt(int) - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
getAttributes(String, String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
 
getAutoCommit() - Method in class com.mysql.jdbc.Connection
gets the current auto-commit state
getBestRowIdentifier(String, String, String, int, boolean) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a table's optimal set of columns that uniquely identifies a row.
getBigDecimal(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBigDecimal(int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBigDecimal(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBigDecimal(int, int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.math.BigDecimal object
getBigDecimal(String, int) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getBigDecimal(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get the value of a column in the current row as a java.math.BigDecimal object.
getBigDecimal(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get the value of a column in the current row as a java.math.BigDecimal object.
getBinaryPassword(int[], boolean) - Static method in class com.mysql.jdbc.Security
DOCUMENT ME!
getBinaryStream() - Method in class com.mysql.jdbc.Blob
Retrieves the BLOB designated by this Blob instance as a stream.
getBinaryStream(int) - Method in class com.mysql.jdbc.ResultSet
A column value can also be retrieved as a binary strea.
getBinaryStream(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getBlob(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBlob(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBlob(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a BLOB column.
getBlob(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a BLOB column.
getBoolean(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBoolean(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBoolean(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java boolean
getBoolean(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getBufLength() - Method in class com.mysql.jdbc.Buffer
 
getBufferSource() - Method in class com.mysql.jdbc.Buffer
 
getByte(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getByte(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getByte(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java byte.
getByte(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getByteBuffer() - Method in class com.mysql.jdbc.Buffer
Returns the array of bytes this Buffer is using to read from.
getBytes(long, int) - Method in class com.mysql.jdbc.Blob
Returns as an array of bytes, part or all of the BLOB value that this Blob object designates.
getBytes(int) - Method in class com.mysql.jdbc.Buffer
 
getBytes(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBytes(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getBytes(int) - Method in class com.mysql.jdbc.PreparedStatement
 
getBytes(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java byte array.
getBytes(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getBytes(String, String, String, boolean) - Static method in class com.mysql.jdbc.StringUtils
Returns the byte[] representation of the given string using given encoding.
getBytes(String, SingleByteCharsetConverter, String, String, boolean) - Static method in class com.mysql.jdbc.StringUtils
Returns the byte[] representation of the given string (re)using the given charset converter, and the given encoding.
getBytes(String, SingleByteCharsetConverter, String, String, int, int, boolean) - Static method in class com.mysql.jdbc.StringUtils
DOCUMENT ME!
getCanoncialTimezone(String) - Static method in class com.mysql.jdbc.TimeUtil
Returns the 'official' Java timezone name for the given timezone
getCatalog() - Method in class com.mysql.jdbc.Connection
Return the connections current catalog name, or null if no catalog name is set, or we dont support catalogs.
getCatalogName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What's a column's table's catalog name?
getCatalogSeparator() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the separator between catalog and table name?
getCatalogTerm() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "catalog"?
getCatalogs() - Method in class com.mysql.jdbc.DatabaseMetaData
Get the catalog names available in this database.
getCharacterSet() - Method in class com.mysql.jdbc.Field
Returns the character set (if known) for this field.
getCharacterSetMetadata() - Method in class com.mysql.jdbc.Connection
 
getCharacterStream() - Method in class com.mysql.jdbc.Clob
 
getCharacterStream(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
getCharacterStream(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
getCharsetConverter(String) - Method in class com.mysql.jdbc.Connection
Returns the locally mapped instance of a charset converter (to avoid overhead of static synchronization).
getCharsetNameForIndex(int) - Method in class com.mysql.jdbc.Connection
Returns the Java character encoding name for the given MySQL server charset index
getClob(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getClob(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getClob(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a CLOB column.
getClob(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a CLOB column.
getClobberStreamingResults() - Method in class com.mysql.jdbc.Connection
Returns whether we clobber streaming results on new queries, or issue an error?
getColumnCharacterEncoding(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What's the Java character encoding name for the given column?
getColumnCharacterSet(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What's the MySQL character set name for the given column?
getColumnClassName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
JDBC 2.0
getColumnCount() - Method in class com.mysql.jdbc.ResultSetMetaData
Whats the number of columns in the ResultSet?
getColumnDisplaySize(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is the column's normal maximum width in characters?
getColumnLabel(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is the suggested column title for use in printouts and displays?
getColumnName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What's a column's name?
getColumnPrivileges(String, String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of the access rights for a table's columns.
getColumnType(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is a column's SQL Type? (java.sql.Type int)
getColumnTypeName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Whats is the column's data source specific type name?
getColumns(String, String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of table columns available in a catalog.
getConcurrency() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Return the concurrency of this result set.
getConcurrency() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Return the concurrency of this result set.
getConnection() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getConnection() - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Return the connection that produced this metadata object.
getConnection() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Return the Connection that produced the Statement.
getCrossReference(String, String, String, String, String, String) - Method in class com.mysql.jdbc.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.
getCurrentRowNumber() - Method in interface com.mysql.jdbc.RowData
Returns the current position in the result set as a row number.
getCurrentRowNumber() - Method in class com.mysql.jdbc.RowDataDynamic
Returns the current position in the result set as a row number.
getCurrentRowNumber() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
getCursorName() - Method in class com.mysql.jdbc.ResultSet
Get the name of the SQL cursor used by this ResultSet
getDatabaseMajorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getDatabaseMinorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getDatabaseName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getDatabaseProductName() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the name of this database product?
getDatabaseProductVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the version of this database product?
getDate(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDate(int, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDate(String, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDate(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDate(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Date object
getDate(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getDate(int, Calendar) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get the value of a column in the current row as a java.sql.Date object.
getDate(String, Calendar) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Date object.
getDecimals() - Method in class com.mysql.jdbc.Field
 
getDefaultTimeZone() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getDefaultTransactionIsolation() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the database's default transaction isolation level? The values are defined in java.sql.Connection.
getDouble(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDouble(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getDouble(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java double.
getDouble(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getDoubleInternal(int) - Method in class com.mysql.jdbc.ResultSet
Converts a string representation of a number to a double.
getDriverMajorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
What's this JDBC driver's major version number?
getDriverMinorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
What's this JDBC driver's minor version number?
getDriverName() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the name of this JDBC driver?
getDriverVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the version of this JDBC driver?
getEncoding() - Method in class com.mysql.jdbc.Connection
Returns the character encoding for this Connection
getExportedKeys(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a foreign key columns that reference a table's primary key columns (the foreign keys exported by a table).
getExtraNameCharacters() - Method in class com.mysql.jdbc.DatabaseMetaData
Get all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, 0-9 and _).
getFetchDirection() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getFetchDirection() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Returns the fetch direction for this result set.
getFetchDirection() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Determine the fetch direction.
getFetchSize() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getFetchSize() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Return the fetch size for this result set.
getFetchSize() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Determine the default fetch size.
getField(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Returns the field instance for the given column index
getFirstCharOfQuery() - Method in class com.mysql.jdbc.ResultSet
Returns the first character of the query that this result set was created from.
getFloat(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getFloat(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getFloat(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java float.
getFloat(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getFullName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getFullOriginalName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getGeneratedKeys() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getGeneratedKeys() - Method in class com.mysql.jdbc.PreparedStatement
 
getGeneratedKeys() - Method in class com.mysql.jdbc.Statement
DOCUMENT ME!
getHoldability() - Method in class com.mysql.jdbc.Connection
 
getHost() - Method in class com.mysql.jdbc.MysqlIO
Returns the host this IO is connected to
getIO() - Method in class com.mysql.jdbc.Connection
Returns the IO channel to the server
getIdentifierQuoteString() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the string used to quote SQL identifiers? This returns a space " " if identifier quoting isn't supported.
getIdleFor() - Method in class com.mysql.jdbc.Connection
NOT JDBC-Compliant, but clients can use this method to determine how long this connection has been idle.
getImportedKeys(String, String, String) - Method in class com.mysql.jdbc.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).
getIndexInfo(String, String, String, boolean, boolean) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a table's indices and statistics.
getInputStream() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket
 
getInstance(String) - Static method in class com.mysql.jdbc.SingleByteCharsetConverter
Get a converter for the given encoding name
getInt(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getInt(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getInt(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java int.
getInt(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getJDBCMajorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getJDBCMinorVersion() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getLastInsertID() - Method in class com.mysql.jdbc.Statement
getLastInsertID returns the value of the auto_incremented key after an executeQuery() or excute() call.
getLength() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getLong(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getLong(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getLong(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java long.
getLong(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getLongUpdateCount() - Method in class com.mysql.jdbc.Statement
getLongUpdateCount returns the current result as an update count, if the result is a ResultSet or there are no more results, -1 is returned.
getMajorVersion() - Method in class com.mysql.jdbc.NonRegisteringDriver
Gets the drivers major version number
getMajorVersionInternal() - Static method in class com.mysql.jdbc.NonRegisteringDriver
Gets the drivers major version number
getMaxAllowedPacket() - Method in class com.mysql.jdbc.Connection
Returns the maximum packet size the MySQL server will accept
getMaxBinaryLiteralLength() - Method in class com.mysql.jdbc.DatabaseMetaData
How many hex characters can you have in an inline binary literal?
getMaxBuf() - Static method in class com.mysql.jdbc.MysqlIO
 
getMaxCatalogNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a catalog name?
getMaxCharLiteralLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the max length for a character literal?
getMaxColumnNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the limit on column name length?
getMaxColumnsInGroupBy() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum number of columns in a "GROUP BY" clause?
getMaxColumnsInIndex() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum number of columns allowed in an index?
getMaxColumnsInOrderBy() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum number of columns in an "ORDER BY" clause?
getMaxColumnsInSelect() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum number of columns in a "SELECT" list?
getMaxColumnsInTable() - Method in class com.mysql.jdbc.DatabaseMetaData
What's maximum number of columns in a table?
getMaxConnections() - Method in class com.mysql.jdbc.DatabaseMetaData
How many active connections can we have at a time to this database?
getMaxCursorNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum cursor name length?
getMaxFieldSize() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getMaxFieldSize() - Method in class com.mysql.jdbc.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 class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of an index (in bytes)?
getMaxProcedureNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a procedure name?
getMaxRowSize() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a single row?
getMaxRows() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getMaxRows() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getMaxRows() - Method in class com.mysql.jdbc.Statement
The maxRows limit is set to limit the number of rows that any ResultSet can contain.
getMaxSchemaNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length allowed for a schema name?
getMaxStatementLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a SQL statement?
getMaxStatements() - Method in class com.mysql.jdbc.DatabaseMetaData
How many active statements can we have open at one time to this database?
getMaxTableNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a table name?
getMaxTablesInSelect() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum number of tables in a SELECT?
getMaxUserNameLength() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the maximum length of a user name?
getMetaData() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getMetaData() - Method in class com.mysql.jdbc.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 class com.mysql.jdbc.PreparedStatement
The number, types and properties of a ResultSet's columns are provided by the getMetaData method.
getMetaData() - Method in class com.mysql.jdbc.ResultSet
The numbers, types and properties of a ResultSet's columns are provided by the getMetaData method
getMinorVersion() - Method in class com.mysql.jdbc.NonRegisteringDriver
Get the drivers minor version number
getMinorVersionInternal() - Static method in class com.mysql.jdbc.NonRegisteringDriver
Get the drivers minor version number
getMoreResults() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getMoreResults(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getMoreResults() - Method in class com.mysql.jdbc.Statement
getMoreResults moves to a Statement's next result.
getMoreResults(int) - Method in class com.mysql.jdbc.Statement
 
getMutex() - Method in class com.mysql.jdbc.Connection
Returns the Mutex all queries are locked against
getMysqlType() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getNegativeInfinityRep() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getNetBufferLength() - Method in class com.mysql.jdbc.Connection
Returns the packet buffer size the MySQL server reported upon connection
getNetWriteTimeout() - Method in class com.mysql.jdbc.Connection
 
getNotANumberRep() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getNumericFunctions() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a comma separated list of math functions.
getObject(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getObject(int, Map) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getObject(String, Map) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getObject(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getObject(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java object
getObject(String) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java object
getObject(int, Map) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Returns the value of column i as a Java object.
getObject(String, Map) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Returns the value of column i as a Java object.
getOriginalName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getOriginalTableName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getOutputStream() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket
 
getOwner() - Method in interface com.mysql.jdbc.RowData
Returns the result set that 'owns' this RowData
getOwner() - Method in class com.mysql.jdbc.RowDataDynamic
 
getOwner() - Method in class com.mysql.jdbc.RowDataStatic
 
getParameterMetaData() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getParameterMetaData() - Method in class com.mysql.jdbc.PreparedStatement
 
getParseInfo() - Method in class com.mysql.jdbc.PreparedStatement
 
getPosition() - Method in class com.mysql.jdbc.Buffer
Returns the current position to write to/ read from
getPositiveInfinityRep() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getPrecision(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is a column's number of decimal digits.
getPrecisionAdjustFactor() - Method in class com.mysql.jdbc.Field
Returns amount of correction that should be applied to the precision value.
getPrimaryKeys(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a table's primary key columns.
getProcedureColumns(String, String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a catalog's stored procedure parameters and result columns.
getProcedureTerm() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "procedure"?
getProcedures(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of stored procedures available in a catalog.
getPropertyInfo(String, Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
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 class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getQueryTimeout() - Method in class com.mysql.jdbc.Statement
The queryTimeout limit is the number of seconds the driver will wait for a Statement to execute.
getRef(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getRef(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getRef(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a REF(<structured-type>) column.
getRef(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Get a REF(<structured-type>) column.
getResultSet() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getResultSet(long, int, int, boolean, String) - Method in class com.mysql.jdbc.MysqlIO
Build a result set.
getResultSet() - Method in class com.mysql.jdbc.Statement
getResultSet returns the current result as a ResultSet.
getResultSetConcurrency() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getResultSetConcurrency() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Determine the result set concurrency.
getResultSetHoldability() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getResultSetHoldability() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getResultSetHoldability() - Method in class com.mysql.jdbc.Statement
 
getResultSetType() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getResultSetType() - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Determine the result set type.
getRollbackOnPooledClose() - Method in class com.mysql.jdbc.Connection
 
getRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
getSQLKeywords() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a comma separated list of all a database's SQL keywords that are NOT also SQL92 keywords.
getSQLStateType() - Method in class com.mysql.jdbc.DatabaseMetaData
 
getSQLType() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getScale(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is a column's number of digits to the right of the decimal point?
getSchemaName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
What is a column's table's schema? This relies on us knowing the table name.
getSchemaTerm() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the database vendor's preferred term for "schema"?
getSchemas() - Method in class com.mysql.jdbc.DatabaseMetaData
Get the schema names available in this database.
getSearchStringEscape() - Method in class com.mysql.jdbc.DatabaseMetaData
This is the string that can be used to escape '_' or '%' in the string pattern style catalog search parameters.
getServerCharacterEncoding() - Method in class com.mysql.jdbc.Connection
Returns the server's character set
getServerInfo() - Method in class com.mysql.jdbc.ResultSet
Returns the server info (if any), or null if none.
getServerMajorVersion() - Method in class com.mysql.jdbc.Connection
 
getServerMajorVersion() - Method in class com.mysql.jdbc.MysqlIO
Get the major version of the MySQL server we are talking to.
getServerMinorVersion() - Method in class com.mysql.jdbc.Connection
 
getServerMinorVersion() - Method in class com.mysql.jdbc.MysqlIO
Get the minor version of the MySQL server we are talking to.
getServerSubMinorVersion() - Method in class com.mysql.jdbc.Connection
 
getServerSubMinorVersion() - Method in class com.mysql.jdbc.MysqlIO
Get the sub-minor version of the MySQL server we are talking to.
getServerTimezone() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
getServerVersion() - Method in class com.mysql.jdbc.Connection
 
getServerVersion() - Method in class com.mysql.jdbc.MysqlIO
Get the version string of the server we are talking to
getSharedSendPacket() - Method in class com.mysql.jdbc.MysqlIO
Returns the packet used for sending data (used by PreparedStatement) Guarded by external synchronization on a mutex.
getShort(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getShort(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getShort(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java short.
getShort(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getStatement() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Return the Statement that produced the ResultSet.
getString(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getString(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getString(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a Java String
getString(String) - Method in class com.mysql.jdbc.ResultSet
The following routines simply convert the columnName into a columnIndex and then call the appropriate routine above.
getStringFunctions() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a comma separated list of string functions.
getSubString(long, int) - Method in class com.mysql.jdbc.Clob
 
getSuperTables(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
 
getSuperTypes(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
 
getSystemFunctions() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a comma separated list of system functions.
getTable() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getTableName() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
getTableName(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Whats a column's table's name?
getTablePrivileges(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of the access rights for each table available in a catalog.
getTableTypes() - Method in class com.mysql.jdbc.DatabaseMetaData
Get the table types available in this database.
getTables(String, String, String, String[]) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of tables available in a catalog.
getTime(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTime(int, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTime(String, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTime(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTime(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Time object
getTime(String) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Time object.
getTime(int, Calendar) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Time object.
getTime(String, Calendar) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Time object.
getTimeDateFunctions() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a comma separated list of time and date functions.
getTimestamp(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTimestamp(int, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTimestamp(String, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTimestamp(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getTimestamp(int) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Timestamp object
getTimestamp(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getTimestamp(int, Calendar) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Timestamp object.
getTimestamp(String, Calendar) - Method in class com.mysql.jdbc.ResultSet
Get the value of a column in the current row as a java.sql.Timestamp object.
getTinyint1isBit() - Method in class com.mysql.jdbc.Connection
 
getTransactionIsolation() - Method in class com.mysql.jdbc.Connection
Get this Connection's current transaction isolation mode.
getType() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Return the type of this result set.
getTypeInfo() - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of all the standard SQL types supported by this database.
getTypeMap() - Method in class com.mysql.jdbc.Connection
JDBC 2.0 Get the type-map object associated with this connection.
getUDTs(String, String, String, int[]) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Get a description of the user-defined types defined in a particular schema.
getURL(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getURL(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getURL() - Method in class com.mysql.jdbc.Connection
 
getURL() - Method in class com.mysql.jdbc.DatabaseMetaData
What's the url for this database?
getURL(int) - Method in class com.mysql.jdbc.ResultSet
 
getURL(String) - Method in class com.mysql.jdbc.ResultSet
 
getUnicodeStream(int) - Method in class com.mysql.jdbc.ResultSet
A column value can also be retrieved as a stream of Unicode characters.
getUnicodeStream(String) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
getUpdateCount() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getUpdateCount() - Method in class com.mysql.jdbc.ResultSet
 
getUpdateCount() - Method in class com.mysql.jdbc.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.
getUpdateID() - Method in class com.mysql.jdbc.ResultSet
 
getUseOnlyServerErrorMessages() - Method in class com.mysql.jdbc.Connection
 
getUser() - Method in class com.mysql.jdbc.Connection
 
getUserName() - Method in class com.mysql.jdbc.DatabaseMetaData
What's our user name as known to the database?
getVersionColumns(String, String, String) - Method in class com.mysql.jdbc.DatabaseMetaData
Get a description of a table's columns that are automatically updated when any value in a row is updated.
getWarnings() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
getWarnings() - Method in class com.mysql.jdbc.Connection
The first warning reported by calls on this Connection is returned.
getWarnings() - Method in class com.mysql.jdbc.ResultSet
The first warning reported by calls on this ResultSet is returned.
getWarnings() - Method in class com.mysql.jdbc.Statement
The first warning reported by calls on this Statement is returned.

H

HEADER_LENGTH - Static variable in class com.mysql.jdbc.MysqlIO
 
HOST_NAME_INDEX - Static variable in class com.mysql.jdbc.NonRegisteringDriver
Index for hostname coming out of parseHostPortPair().
hasLongColumnInfo() - Method in class com.mysql.jdbc.MysqlIO
Does the server send back extra column info?
hasMoreTokens() - Method in class com.mysql.jdbc.EscapeTokenizer
Does this tokenizer have more tokens available?
hasNext() - Method in interface com.mysql.jdbc.RowData
Returns true if another row exsists.
hasNext() - Method in class com.mysql.jdbc.RowDataDynamic
Returns true if another row exsists.
hasNext() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
host(Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Returns the hostname property
host - Variable in class com.mysql.jdbc.StandardSocketFactory
The hostname to connect to

I

INDEX_TO_CHARSET - Static variable in class com.mysql.jdbc.CharsetMapping
Map of MySQL-4.1 charset indexes to Java encoding names
INIT_DB - Static variable in class com.mysql.jdbc.MysqlDefs
 
initCharset(String) - Static method in class com.mysql.jdbc.SingleByteCharsetConverter
Initialize the shared instance of a converter for the given character encoding.
insertRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Insert the contents of the insert row into the result set and the database.
insertRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Insert the contents of the insert row into the result set and the database.
insertsAreDetected(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Determine whether or not a visible row insert can be detected by calling ResultSet.rowInserted().
isAfterLast() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
isAfterLast() - Method in interface com.mysql.jdbc.RowData
Returns true if we got the last element.
isAfterLast() - Method in class com.mysql.jdbc.RowDataDynamic
Returns true if we got the last element.
isAfterLast() - Method in class com.mysql.jdbc.RowDataStatic
Returns true if we got the last element.
isAfterLast() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
isAutoIncrement() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isAutoIncrement(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Is the column automatically numbered (and thus read-only) MySQL Auto-increment columns are not read only, so to conform to the spec, this method returns false.
isBeforeFirst() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
isBeforeFirst() - Method in interface com.mysql.jdbc.RowData
Returns if iteration has not occured yet.
isBeforeFirst() - Method in class com.mysql.jdbc.RowDataDynamic
Returns if iteration has not occured yet.
isBeforeFirst() - Method in class com.mysql.jdbc.RowDataStatic
Returns if iteration has not occured yet.
isBeforeFirst() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
isBinary() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isBlob() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isCaseSensitive(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Does a column's case matter? ASSUMPTION: Any field that is not obviously case insensitive is assumed to be case sensitive
isCatalogAtStart() - Method in class com.mysql.jdbc.DatabaseMetaData
Does a catalog appear at the start of a qualified table name? (Otherwise it appears at the end)
isClosed() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
isClosed() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket
 
isClosed - Variable in class com.mysql.jdbc.ResultSet
Has this result set been closed?
isClosed - Variable in class com.mysql.jdbc.Statement
Has this statement been closed?
isCurrency(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Is the column a cash value?
isDefinitelyWritable(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Will a write on this column definately succeed?
isDynamic() - Method in interface com.mysql.jdbc.RowData
Returns true if the result set is dynamic.
isDynamic() - Method in class com.mysql.jdbc.RowDataDynamic
Returns true if the result set is dynamic.
isDynamic() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
isEmpty() - Method in interface com.mysql.jdbc.RowData
Has no records.
isEmpty() - Method in class com.mysql.jdbc.RowDataDynamic
Has no records.
isEmpty() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
isFirst() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
isFirst() - Method in interface com.mysql.jdbc.RowData
Are we on the first row of the result set?
isFirst() - Method in class com.mysql.jdbc.RowDataDynamic
Are we on the first row of the result set?
isFirst() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
isFirst() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
isInteractiveClient() - Method in class com.mysql.jdbc.Connection
Should we tell MySQL that we're an interactive client
isLast() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
isLast() - Method in interface com.mysql.jdbc.RowData
Are we on the last row of the result set?
isLast() - Method in class com.mysql.jdbc.RowDataDynamic
Are we on the last row of the result set?
isLast() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
isLast() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
isLastDataPacket() - Method in class com.mysql.jdbc.Buffer
 
isMultipleKey() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isNegativeInfinityRepIsClipped() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
isNotANumberRepIsClipped() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
isNotNull() - Method in class com.mysql.jdbc.Field
 
isNull - Variable in class com.mysql.jdbc.PreparedStatement.BatchParams
 
isNull(int) - Method in class com.mysql.jdbc.PreparedStatement
 
isNullable(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Can you put a NULL in this column?
isPedantic() - Method in class com.mysql.jdbc.Connection
 
isPositiveInfinityRepIsClipped() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
isPrimaryKey() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isReadInfoMsgEnabled() - Method in class com.mysql.jdbc.Connection
 
isReadOnly() - Method in class com.mysql.jdbc.Connection
Tests to see if the connection is in Read Only Mode.
isReadOnly() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the database in read-only mode?
isReadOnly() - Method in class com.mysql.jdbc.Field
Is this field _definitely_ not writable?
isReadOnly(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Is the column definitely not writable?
isSearchable(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Can the column be used in a WHERE clause? Basically for this, I split the functions into two types: recognised types (which are always useable), and OTHER types (which may or may not be useable).
isSigned(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Is the column a signed number?
isStream - Variable in class com.mysql.jdbc.PreparedStatement.BatchParams
 
isUniqueKey() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isUnsigned() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
isUpdatable() - Method in class com.mysql.jdbc.UpdatableResultSet
 
isUsingUnbufferedInput() - Method in class com.mysql.jdbc.Connection
Is this connection using unbuffered input?
isWritable(int) - Method in class com.mysql.jdbc.ResultSetMetaData
Is it possible for a write on the column to succeed?
isZeroFill() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!

J

JAVA_TO_MYSQL_CHARSET_MAP - Static variable in class com.mysql.jdbc.CharsetMapping
Mapping of Java charset names to MySQL charset names
JAVA_UC_TO_MYSQL_CHARSET_MAP - Static variable in class com.mysql.jdbc.CharsetMapping
Mapping of upper-case Java charset names to MySQL charset names
jdbcCompliant() - Method in class com.mysql.jdbc.NonRegisteringDriver
Report whether the driver is a genuine JDBC compliant driver.

L

LENGTH_BLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
LENGTH_LONGBLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
LENGTH_MEDIUMBLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
LENGTH_TINYBLOB - Static variable in class com.mysql.jdbc.MysqlDefs
 
LicenseConfiguration - class com.mysql.jdbc.LicenseConfiguration.
Used in commercially-licensed clients that require connections to commercially-licensed servers as part of the licensing terms.
last() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
last() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
lastInsertId - Variable in class com.mysql.jdbc.Statement
The auto_increment value for the last insert
lastUsed - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
length() - Method in class com.mysql.jdbc.Blob
Returns the number of bytes in the BLOB value designated by this Blob object.
length() - Method in class com.mysql.jdbc.Clob
 
locatorsUpdateCopy() - Method in class com.mysql.jdbc.DatabaseMetaData
 
lowerCaseTableNames() - Method in class com.mysql.jdbc.Connection
Is the server configured to use lower-case table names only?

M

MAX_DOUBLE_VAL_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
MAX_FLOAT_VAL_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
MAX_ROWS - Static variable in class com.mysql.jdbc.MysqlDefs
 
MIN_COMPRESS_LEN - Static variable in class com.mysql.jdbc.MysqlIO
 
MIN_DOUBLE_VAL_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
MIN_FLOAT_VAL_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
MULTIBYTE_CHARSETS - Static variable in class com.mysql.jdbc.CharsetMapping
Map/List of multibyte character sets (using MySQL names)
MYSQL_TO_JAVA_CHARSET_MAP - Static variable in class com.mysql.jdbc.CharsetMapping
Mapping of MySQL charset names to Java charset names
MiniAdmin - class com.mysql.jdbc.MiniAdmin.
Utility functions for admin functionality from Java.
MiniAdmin(Connection) - Constructor for class com.mysql.jdbc.MiniAdmin
Create a new MiniAdmin using the given connection
MiniAdmin(String) - Constructor for class com.mysql.jdbc.MiniAdmin
Create a new MiniAdmin, connecting using the given JDBC URL.
MiniAdmin(String, Properties) - Constructor for class com.mysql.jdbc.MiniAdmin
Create a new MiniAdmin, connecting using the given JDBC URL and properties
MysqlDefs - class com.mysql.jdbc.MysqlDefs.
MysqlDefs contains many values that are needed for communication with the MySQL server.
MysqlDefs() - Constructor for class com.mysql.jdbc.MysqlDefs
 
MysqlIO - class com.mysql.jdbc.MysqlIO.
This class is used by Connection for communicating with the MySQL server.
MysqlIO(String, int, String, Properties, Connection, int) - Constructor for class com.mysql.jdbc.MysqlIO
Constructor: Connect to the MySQL server and setup a stream connection.
makeScrambledPassword(String) - Static method in class com.mysql.jdbc.Security
Creates password to be stored in user database from raw string.
maxFieldSize - Variable in class com.mysql.jdbc.Statement
The max field size for this statement
maxRows - Variable in class com.mysql.jdbc.Statement
The maximum number of rows to return for this statement (-1 means _all_ rows)
maxRowsChanged(Statement) - Method in class com.mysql.jdbc.Connection
Has the maxRows value changed?
maxRowsChanged - Variable in class com.mysql.jdbc.Statement
Has someone changed this for this statement?
maxValue - Variable in class com.mysql.jdbc.Util.RandStructcture
 
maxValueDbl - Variable in class com.mysql.jdbc.Util.RandStructcture
 
methodCall(Object, String, Object[]) - Static method in class com.mysql.jdbc.Debug
Trace a method call.
moveRowRelative(int) - Method in interface com.mysql.jdbc.RowData
Moves the current position relative 'rows' from the current position.
moveRowRelative(int) - Method in class com.mysql.jdbc.RowDataDynamic
Moves the current position relative 'rows' from the current position.
moveRowRelative(int) - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
moveToCurrentRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Move the cursor to the remembered cursor position, usually the current row.
moveToCurrentRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Move the cursor to the remembered cursor position, usually the current row.
moveToInsertRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Move to the insert row.
moveToInsertRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Move to the insert row.
msg(Object, String) - Static method in class com.mysql.jdbc.Debug
Log a message.
mysqlToJavaType(int) - Static method in class com.mysql.jdbc.MysqlDefs
Maps the given MySQL type to the correct JDBC type.
mysqlToJavaType(String) - Static method in class com.mysql.jdbc.MysqlDefs
Maps the given MySQL type to the correct JDBC type.
mysqlToXOpen(int) - Static method in class com.mysql.jdbc.SQLError
Map MySQL error codes to X/Open error codes

N

NAN_VAL_STRING - Static variable in class com.mysql.jdbc.MysqlDefs
 
NOT_UPDATEABLE_MESSAGE - Static variable in class com.mysql.jdbc.NotUpdatable
The message to use when result set is not updatable.
NO_CHARSET_INFO - Static variable in class com.mysql.jdbc.MysqlDefs
Used to indicate that the server sent no field-level character set information, so the driver should use the connection-level character encoding instead.
NO_LENGTH_LIMIT - Static variable in class com.mysql.jdbc.Buffer
 
NULL_LENGTH - Static variable in class com.mysql.jdbc.Buffer
 
NULL_LENGTH - Static variable in class com.mysql.jdbc.MysqlIO
 
NamedPipeSocketFactory - class com.mysql.jdbc.NamedPipeSocketFactory.
A socket factory for named pipes (on Windows)
NamedPipeSocketFactory() - Constructor for class com.mysql.jdbc.NamedPipeSocketFactory
Constructor for NamedPipeSocketFactory.
NamedPipeSocketFactory.NamedPipeSocket - class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket.
A socket that encapsulates named pipes on Windows
NamedPipeSocketFactory.NamedPipeSocket(String) - Constructor for class com.mysql.jdbc.NamedPipeSocketFactory.NamedPipeSocket
 
NamedPipeSocketFactory.RandomAccessFileInputStream - class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream.
Enables OutputStream-type functionality for a RandomAccessFile
NamedPipeSocketFactory.RandomAccessFileInputStream(RandomAccessFile) - Constructor for class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
NamedPipeSocketFactory.RandomAccessFileOutputStream - class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream.
Enables OutputStream-type functionality for a RandomAccessFile
NamedPipeSocketFactory.RandomAccessFileOutputStream(RandomAccessFile) - Constructor for class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
NonRegisteringDriver - class com.mysql.jdbc.NonRegisteringDriver.
The Java SQL framework allows for multiple database drivers.
NonRegisteringDriver() - Constructor for class com.mysql.jdbc.NonRegisteringDriver
Construct a new driver and register it with DriverManager
NotImplemented - exception com.mysql.jdbc.NotImplemented.
Thrown from methods not required to be implemented.
NotImplemented() - Constructor for class com.mysql.jdbc.NotImplemented
Creates a new NotImplemented object.
NotUpdatable - exception com.mysql.jdbc.NotUpdatable.
Thrown when a result sate is not updatable
NotUpdatable() - Constructor for class com.mysql.jdbc.NotUpdatable
Creates a new NotUpdatable exception.
nativeSQL(String) - Method in class com.mysql.jdbc.Connection
A driver may convert the JDBC sql grammar into its system's native SQL grammar prior to sending it; nativeSQL returns the native form of the statement that the driver would have sent.
newCrypt(String, String) - Static method in class com.mysql.jdbc.Util
 
newHash(String) - Static method in class com.mysql.jdbc.Util
 
newReadLength() - Method in class com.mysql.jdbc.Buffer
 
next() - Method in class com.mysql.jdbc.ResultSet
A ResultSet is initially positioned before its first row, the first call to next makes the first row the current row; the second call makes the second row the current row, etc.
next() - Method in interface com.mysql.jdbc.RowData
Returns the next row.
next() - Method in class com.mysql.jdbc.RowDataDynamic
Returns the next row.
next() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
next() - Method in class com.mysql.jdbc.UpdatableResultSet
A ResultSet is initially positioned before its first row, the first call to next makes the first row the current row; the second call makes the second row the current row, etc.
nextResults - Variable in class com.mysql.jdbc.Statement
The next result set
nextRow(int) - Method in class com.mysql.jdbc.MysqlIO
Retrieve one row from the MySQL server.
nextToken() - Method in class com.mysql.jdbc.EscapeTokenizer
Returns the next token
nullPlusNonNullIsNull() - Method in class com.mysql.jdbc.DatabaseMetaData
Are concatenations between NULL and non-NULL values NULL? A JDBC compliant driver always returns true.
nullsAreSortedAtEnd() - Method in class com.mysql.jdbc.DatabaseMetaData
Are NULL values sorted at the end regardless of sort order?
nullsAreSortedAtStart() - Method in class com.mysql.jdbc.DatabaseMetaData
Are NULL values sorted at the start regardless of sort order?
nullsAreSortedHigh() - Method in class com.mysql.jdbc.DatabaseMetaData
Are NULL values sorted high?
nullsAreSortedLow() - Method in class com.mysql.jdbc.DatabaseMetaData
Are NULL values sorted low?

O

OutputStreamWatcher - interface com.mysql.jdbc.OutputStreamWatcher.
Objects that want to be notified of lifecycle events on a WatchableOutputStream should implement this interface, and register themselves with setWatcher() on the WatchableOutputStream instance.
oldCrypt(String, String) - Static method in class com.mysql.jdbc.Util
 
oldHash(String) - Static method in class com.mysql.jdbc.Util
 
onInsertRow - Variable in class com.mysql.jdbc.ResultSet
Are we on the insert row?
openResults - Variable in class com.mysql.jdbc.Statement
List of currently-open ResultSets
org.gjt.mm.mysql - package org.gjt.mm.mysql
 
othersDeletesAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
DOCUMENT ME!
othersInsertsAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
DOCUMENT ME!
othersUpdatesAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Determine whether changes made by others are visible.
ownDeletesAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
DOCUMENT ME!
ownInsertsAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
DOCUMENT ME!
ownUpdatesAreVisible(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Determine whether a result set's own changes visible.
owningStatement - Variable in class com.mysql.jdbc.ResultSet
The statement that created us

P

PING - Static variable in class com.mysql.jdbc.MysqlDefs
 
PORT_NUMBER_INDEX - Static variable in class com.mysql.jdbc.NonRegisteringDriver
Index for port # coming out of parseHostPortPair().
PROCESS_INFO - Static variable in class com.mysql.jdbc.MysqlDefs
 
PROCESS_KILL - Static variable in class com.mysql.jdbc.MysqlDefs
 
PacketTooBigException - exception com.mysql.jdbc.PacketTooBigException.
Thrown when a packet that is too big for the server is created.
PacketTooBigException(long, long) - Constructor for class com.mysql.jdbc.PacketTooBigException
Creates a new PacketTooBigException object.
PreparedStatement - class com.mysql.jdbc.PreparedStatement.
A SQL Statement is pre-compiled and stored in a PreparedStatement object.
PreparedStatement(Connection, String, String) - Constructor for class com.mysql.jdbc.PreparedStatement
Constructor for the PreparedStatement class.
PreparedStatement(Connection, String, String, PreparedStatement.ParseInfo) - Constructor for class com.mysql.jdbc.PreparedStatement
Creates a new PreparedStatement object.
PreparedStatement.BatchParams - class com.mysql.jdbc.PreparedStatement.BatchParams.
 
PreparedStatement.BatchParams(byte[][], InputStream[], boolean[], int[], boolean[]) - Constructor for class com.mysql.jdbc.PreparedStatement.BatchParams
 
PreparedStatement.ParseInfo - class com.mysql.jdbc.PreparedStatement.ParseInfo.
 
PreparedStatement.ParseInfo(String, Connection, DatabaseMetaData, String, SingleByteCharsetConverter) - Constructor for class com.mysql.jdbc.PreparedStatement.ParseInfo
 
parameterStreams - Variable in class com.mysql.jdbc.PreparedStatement.BatchParams
 
parameterStrings - Variable in class com.mysql.jdbc.PreparedStatement.BatchParams
 
parseHostPortPair(String) - Static method in class com.mysql.jdbc.NonRegisteringDriver
Parses hostPortPair in the form of [host][:port] into an array, with the element of index HOST_NAME_INDEX being the host (or null if not specified), and the element of index PORT_NUMBER_INDEX being the port (or null if not specified).
parseURL(String, Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Constructs a new DriverURL, splitting the specified URL into its component parts
parserKnowsUnicode - Variable in class com.mysql.jdbc.Connection
 
parserKnowsUnicode() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
passwordCrypt(byte[], byte[], byte[], int) - Static method in class com.mysql.jdbc.Security
Encrypt/Decrypt function used for password encryption in authentication Simple XOR is used here but it is OK as we crypt random strings
passwordHashStage1(String) - Static method in class com.mysql.jdbc.Security
Stage one password hashing, used in MySQL 4.1 password handling
passwordHashStage2(byte[], byte[]) - Static method in class com.mysql.jdbc.Security
Stage two password hashing used in MySQL 4.1 password handling
pedantic - Variable in class com.mysql.jdbc.Statement
Are we in pedantic mode?
pendingWarnings - Variable in class com.mysql.jdbc.Statement
The pending warnings chain
port(Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Returns the port number property
port - Variable in class com.mysql.jdbc.StandardSocketFactory
The port number to connect to
position(Blob, long) - Method in class com.mysql.jdbc.Blob
Finds the position of the given pattern in this BLOB.
position(byte[], long) - Method in class com.mysql.jdbc.Blob
 
position(String, long) - Method in class com.mysql.jdbc.Clob
 
position(Clob, long) - Method in class com.mysql.jdbc.Clob
 
prepareCall(String) - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
prepareCall(String, int, int) - Method in class com.mysql.jdbc.Connection
JDBC 2.0 Same as prepareCall() above, but allows the default result set type and result set concurrency type to be overridden.
prepareCall(String, int, int, int) - Method in class com.mysql.jdbc.Connection
 
prepareStatement(String) - Method in class com.mysql.jdbc.Connection
A SQL statement with or without IN parameters can be pre-compiled and stored in a PreparedStatement object.
prepareStatement(String, int, int) - Method in class com.mysql.jdbc.Connection
JDBC 2.0 Same as prepareStatement() above, but allows the default result set type and result set concurrency type to be overridden.
prepareStatement(String, int, int, int) - Method in class com.mysql.jdbc.Connection
 
prepareStatement(String, int) - Method in class com.mysql.jdbc.Connection
 
prepareStatement(String, int[]) - Method in class com.mysql.jdbc.Connection
 
prepareStatement(String, String[]) - Method in class com.mysql.jdbc.Connection
 
prev() - Method in class com.mysql.jdbc.ResultSet
The prev method is not part of JDBC, but because of the architecture of this driver it is possible to move both forward and backward within the result set.
prev() - Method in class com.mysql.jdbc.UpdatableResultSet
The prev method is not part of JDBC, but because of the architecture of this driver it is possible to move both forward and backward within the result set.
previous() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
previous() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
property(String, Properties) - Method in class com.mysql.jdbc.NonRegisteringDriver
Returns the given property from props

Q

QUERY - Static variable in class com.mysql.jdbc.MysqlDefs
 
QUIT - Static variable in class com.mysql.jdbc.MysqlDefs
 
quit() - Method in class com.mysql.jdbc.MysqlIO
Log-off of the MySQL server and close the socket.

R

RELOAD - Static variable in class com.mysql.jdbc.MysqlDefs
 
RESULT_SET_SIZE_UNKNOWN - Static variable in interface com.mysql.jdbc.RowData
What's returned for the size of a result set when its size can not be determined.
ResultSet - class com.mysql.jdbc.ResultSet.
A ResultSet provides access to a table of data generated by executing a Statement.
ResultSet(long, long) - Constructor for class com.mysql.jdbc.ResultSet
Create a result set for an executeUpdate statement.
ResultSet(String, Field[], RowData, Connection) - Constructor for class com.mysql.jdbc.ResultSet
Create a new ResultSet
ResultSet(Field[], RowData) - Constructor for class com.mysql.jdbc.ResultSet
Creates a new ResultSet object.
ResultSetMetaData - class com.mysql.jdbc.ResultSetMetaData.
A ResultSetMetaData object can be used to find out about the types and properties of the columns in a ResultSet
ResultSetMetaData(Field[]) - Constructor for class com.mysql.jdbc.ResultSetMetaData
Initialise for a result with a tuple set and a field descriptor set
RowData - interface com.mysql.jdbc.RowData.
This interface abstracts away how row data is accessed by the result set.
RowDataDynamic - class com.mysql.jdbc.RowDataDynamic.
Allows streaming of MySQL data.
RowDataDynamic(MysqlIO, int) - Constructor for class com.mysql.jdbc.RowDataDynamic
Creates a new RowDataDynamic object.
RowDataDynamic.OperationNotSupportedException - exception com.mysql.jdbc.RowDataDynamic.OperationNotSupportedException.
 
RowDataDynamic.OperationNotSupportedException() - Constructor for class com.mysql.jdbc.RowDataDynamic.OperationNotSupportedException
 
RowDataStatic - class com.mysql.jdbc.RowDataStatic.
Represents an in-memory result set
RowDataStatic(ArrayList) - Constructor for class com.mysql.jdbc.RowDataStatic
Creates a new RowDataStatic object.
raFile - Variable in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
raFile - Variable in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
rawSocket - Variable in class com.mysql.jdbc.StandardSocketFactory
The underlying TCP/IP socket to use
read() - Method in class com.mysql.jdbc.CompressedInputStream
 
read(byte[], int, int) - Method in class com.mysql.jdbc.CompressedInputStream
 
read(byte[]) - Method in class com.mysql.jdbc.CompressedInputStream
 
read() - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
read(byte[], int, int) - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
read(byte[]) - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileInputStream
 
readByte() - Method in class com.mysql.jdbc.Buffer
 
readFieldLength() - Method in class com.mysql.jdbc.Buffer
 
readInt() - Method in class com.mysql.jdbc.Buffer
 
readLenByteArray(int) - Method in class com.mysql.jdbc.Buffer
 
readLength() - Method in class com.mysql.jdbc.Buffer
 
readLong() - Method in class com.mysql.jdbc.Buffer
 
readLongInt() - Method in class com.mysql.jdbc.Buffer
 
readLongLong() - Method in class com.mysql.jdbc.Buffer
 
readObject(ResultSet, int) - Static method in class com.mysql.jdbc.Util
Given a ResultSet and an index into the columns of that ResultSet, read binary data from the column which represents a serialized object, and re-create the object.
readString() - Method in class com.mysql.jdbc.Buffer
 
readString(String) - Method in class com.mysql.jdbc.Buffer
 
readnBytes() - Method in class com.mysql.jdbc.Buffer
 
realClose(boolean, boolean) - Method in class com.mysql.jdbc.Connection
Closes connection and frees resources.
realClose(boolean) - Method in class com.mysql.jdbc.ResultSet
 
reallyResult - Variable in class com.mysql.jdbc.ResultSet
Do we actually contain rows, or just information about UPDATE/INSERT/DELETE?
reallyResult() - Method in class com.mysql.jdbc.ResultSet
 
refreshRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Refresh the value of the current row with its current value in the database.
refreshRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Refresh the value of the current row with its current value in the database.
registerOutParameter(int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
registerOutParameter(int, int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
registerOutParameter(int, int, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
registerOutParameter(String, int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
registerOutParameter(String, int, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
registerOutParameter(String, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
relative(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0
relative(int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0
releaseSavepoint(Savepoint) - Method in class com.mysql.jdbc.Connection
 
removeRow(int) - Method in interface com.mysql.jdbc.RowData
Removes the row at the given index.
removeRow(int) - Method in class com.mysql.jdbc.RowDataDynamic
Removes the row at the given index.
removeRow(int) - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
resetMaxBuf() - Method in class com.mysql.jdbc.MysqlIO
Sets the buffer size to max-buf
resetServerState() - Method in class com.mysql.jdbc.Connection
Resets the server-side state of this connection.
resultSetConcurrency - Variable in class com.mysql.jdbc.ResultSet
Are we read-only or updatable?
resultSetConcurrency - Variable in class com.mysql.jdbc.Statement
The concurrency for this result set (updatable or not)
resultSetType - Variable in class com.mysql.jdbc.ResultSet
Are we scroll-sensitive/insensitive?
resultSetType - Variable in class com.mysql.jdbc.Statement
The type of this result set (scroll sensitive or in-sensitive)
results - Variable in class com.mysql.jdbc.Statement
The current results
returnValue(Object, String, Object) - Static method in class com.mysql.jdbc.Debug
Trace a method call.
rollback() - Method in class com.mysql.jdbc.Connection
The method rollback() drops all changes made since the previous commit/rollback and releases any database locks currently held by the Connection.
rollback(Savepoint) - Method in class com.mysql.jdbc.Connection
 
rowData - Variable in class com.mysql.jdbc.ResultSet
The actual rows
rowDeleted() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Determine if this row has been deleted.
rowDeleted() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Determine if this row has been deleted.
rowInserted() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Determine if the current row has been inserted.
rowInserted() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Determine if the current row has been inserted.
rowUpdated() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Determine if the current row has been updated.
rowUpdated() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Determine if the current row has been updated.

S

SHUTDOWN - Static variable in class com.mysql.jdbc.MysqlDefs
 
SLEEP - Static variable in class com.mysql.jdbc.MysqlDefs
 
SQLError - class com.mysql.jdbc.SQLError.
SQLError is a utility class that maps MySQL error codes to X/Open error codes as is required by the JDBC spec.
SQLError() - Constructor for class com.mysql.jdbc.SQLError
 
SQL_STATE_BASE_TABLE_NOT_FOUND - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_BASE_TABLE_OR_VIEW_ALREADY_EXISTS - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_BASE_TABLE_OR_VIEW_NOT_FOUND - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_COLUMN_ALREADY_EXISTS - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_COLUMN_NOT_FOUND - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_COMMUNICATION_LINK_FAILURE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_CONNECTION_FAIL_DURING_TX - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_CONNECTION_IN_USE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_CONNECTION_NOT_OPEN - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_CONNECTION_REJECTED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DATETIME_FIELD_OVERFLOW - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DATE_TRUNCATED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DEADLOCK - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DISCONNECT_ERROR - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DIVISION_BY_ZERO - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_DRIVER_NOT_CAPABLE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_ERROR_IN_ROW - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_GENERAL_ERROR - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_ILLEGAL_ARGUMENT - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INDEX_ALREADY_EXISTS - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INDEX_NOT_FOUND - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INSERT_VALUE_LIST_NO_MATCH_COL_LIST - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INTEGRITY_CONSTRAINT_VIOLATION - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INVALID_AUTH_SPEC - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INVALID_COLUMN_NUMBER - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_INVALID_CONNECTION_ATTRIBUTE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_MEMORY_ALLOCATION_FAILURE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_MORE_THAN_ONE_ROW_UPDATED_OR_DELETED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_NO_DEFAULT_FOR_COLUMN - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_NO_ROWS_UPDATED_OR_DELETED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_NUMERIC_VALUE_OUT_OF_RANGE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_PRIVILEGE_NOT_REVOKED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_SYNTAX_ERROR - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_TIMEOUT_EXPIRED - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_UNABLE_TO_CONNECT_TO_DATASOURCE - Static variable in class com.mysql.jdbc.SQLError
 
SQL_STATE_WRONG_NO_OF_PARAMETERS - Static variable in class com.mysql.jdbc.SQLError
 
STATISTICS - Static variable in class com.mysql.jdbc.MysqlDefs
 
Security - class com.mysql.jdbc.Security.
Methods for doing secure authentication with MySQL-4.1 and newer.
SingleByteCharsetConverter - class com.mysql.jdbc.SingleByteCharsetConverter.
Converter for char[]->byte[] and byte[]->char[] for single-byte character sets.
SocketFactory - interface com.mysql.jdbc.SocketFactory.
Interface to allow pluggable socket creation in the driver
StandardSocketFactory - class com.mysql.jdbc.StandardSocketFactory.
Socket factory for vanilla TCP/IP sockets (the standard)
StandardSocketFactory() - Constructor for class com.mysql.jdbc.StandardSocketFactory
 
Statement - class com.mysql.jdbc.Statement.
A Statement object is used for executing a static SQL statement and obtaining the results produced by it.
Statement(Connection, String) - Constructor for class com.mysql.jdbc.Statement
Constructor for a Statement.
StringUtils - class com.mysql.jdbc.StringUtils.
Various utility methods for converting to/from byte arrays in the platform encoding
StringUtils() - Constructor for class com.mysql.jdbc.StringUtils
 
scramble(String, String) - Static method in class com.mysql.jdbc.Util
DOCUMENT ME!
scramble411(String, String) - Static method in class com.mysql.jdbc.Security
 
seed1 - Variable in class com.mysql.jdbc.Util.RandStructcture
 
seed2 - Variable in class com.mysql.jdbc.Util.RandStructcture
 
sendCommand(int, String, Buffer) - Method in class com.mysql.jdbc.MysqlIO
Send a command to the MySQL server If data is to be sent with command, it should be put in ExtraData Raw packets can be sent by setting QueryPacket to something other than null.
serverCharsetIndex - Variable in class com.mysql.jdbc.MysqlIO
 
serverInfo - Variable in class com.mysql.jdbc.ResultSet
Any info message from the server that was created while generating this result set (if 'info parsing' is enabled for the connection).
setArray(int, Array) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setArray(int, Array) - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Set an Array parameter.
setAsciiStream(long) - Method in class com.mysql.jdbc.Clob
 
setAsciiStream(int, InputStream, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setAsciiStream(String, InputStream, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setAsciiStream(int, InputStream, int) - Method in class com.mysql.jdbc.PreparedStatement
When a very large ASCII value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.InputStream.
setAutoCommit(boolean) - Method in class com.mysql.jdbc.Connection
If a connection is in auto-commit mode, than all its SQL statements will be executed and committed as individual transactions.
setBigDecimal(int, BigDecimal) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBigDecimal(String, BigDecimal) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBigDecimal(int, BigDecimal) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.math.BigDecimal value.
setBinaryStream(long) - Method in class com.mysql.jdbc.Blob
 
setBinaryStream(int, InputStream, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBinaryStream(String, InputStream, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBinaryStream(int, InputStream, int) - Method in class com.mysql.jdbc.PreparedStatement
When a very large binary value is input to a LONGVARBINARY parameter, it may be more practical to send it via a java.io.InputStream.
setBlob(int, Blob) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBlob(int, Blob) - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Set a BLOB parameter.
setBoolean(int, boolean) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBoolean(String, boolean) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBoolean(int, boolean) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java boolean value.
setBufLength(int) - Method in class com.mysql.jdbc.Buffer
 
setByte(int, byte) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setByte(String, byte) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setByte(int, byte) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java byte value.
setByteBuffer(byte[]) - Method in class com.mysql.jdbc.Buffer
Sets the array of bytes to use as a buffer to read from.
setBytes(long, byte[], int, int) - Method in class com.mysql.jdbc.Blob
 
setBytes(long, byte[]) - Method in class com.mysql.jdbc.Blob
 
setBytes(int, byte[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBytes(String, byte[]) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setBytes(int, byte[]) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java array of bytes.
setBytes(int, byte[], boolean) - Method in class com.mysql.jdbc.PreparedStatement
 
setBytesNoEscape(int, byte[]) - Method in class com.mysql.jdbc.PreparedStatement
Used by updatable result sets for refreshRow() because the parameter has already been escaped for updater or inserter prepared statements.
setCatalog(String) - Method in class com.mysql.jdbc.Connection
A sub-space of this Connection's database may be selected by setting a catalog name.
setCharacterStream(long) - Method in class com.mysql.jdbc.Clob
 
setCharacterStream(int, Reader, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setCharacterStream(String, Reader, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setCharacterStream(int, Reader, int) - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 When a very large UNICODE value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.Reader.
setClob(int, Clob) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setClob(int, Clob) - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Set a CLOB parameter.
setConnection(Connection) - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
setConnection(Connection) - Method in class com.mysql.jdbc.ResultSet
DOCUMENT ME!
setCurrentRow(int) - Method in interface com.mysql.jdbc.RowData
Moves the current position in the result set to the given row number.
setCurrentRow(int) - Method in class com.mysql.jdbc.RowDataDynamic
Moves the current position in the result set to the given row number.
setCurrentRow(int) - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
setCursorName(String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setCursorName(String) - Method in class com.mysql.jdbc.Statement
setCursorName defines the SQL cursor name that will be used by subsequent execute methods.
setDate(int, Date) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDate(int, Date, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDate(String, Date, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDate(String, Date) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDate(int, Date) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Date value.
setDate(int, Date, Calendar) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Date value.
setDouble(int, double) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDouble(String, double) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setDouble(int, double) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java double value.
setEscapeProcessing(boolean) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setEscapeProcessing(boolean) - Method in class com.mysql.jdbc.Statement
If escape scanning is on (the default), the driver will do escape substitution before sending the SQL to the database.
setFetchDirection(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setFetchDirection(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Give a hint as to the direction in which the rows in this result set will be processed.
setFetchDirection(int) - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Give a hint as to the direction in which the rows in a result set will be processed.
setFetchSize(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setFetchSize(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Give 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 result set.
setFetchSize(int) - Method in class com.mysql.jdbc.Statement
JDBC 2.0 Give the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed.
setFirstCharOfQuery(char) - Method in class com.mysql.jdbc.ResultSet
Sets the first character of the query that this result set was created from.
setFloat(int, float) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setFloat(String, float) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setFloat(int, float) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java float value.
setHoldability(int) - Method in class com.mysql.jdbc.Connection
 
setInt(int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setInt(String, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setInt(int, int) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java int value.
setLong(int, long) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setLong(String, long) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setLong(int, long) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java long value.
setMaxFieldSize(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setMaxFieldSize(int) - Method in class com.mysql.jdbc.Statement
Sets the maxFieldSize
setMaxRows(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setMaxRows(int) - Method in class com.mysql.jdbc.Statement
Set the maximum number of rows
setNull(int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setNull(int, int, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setNull(String, int, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setNull(String, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setNull(int, int) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to SQL NULL
setNull(int, int, String) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to SQL NULL.
setObject(int, Object) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(int, Object, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(int, Object, int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(String, Object, int, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(String, Object, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(String, Object) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setObject(int, Object, int, int) - Method in class com.mysql.jdbc.PreparedStatement
Set the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setObject(int, Object, int) - Method in class com.mysql.jdbc.PreparedStatement
Set the value of a parameter using an object; use the java.lang equivalent objects for integral values.
setObject(int, Object) - Method in class com.mysql.jdbc.PreparedStatement
Sets the given parameter to the given object.
setOwner(ResultSet) - Method in interface com.mysql.jdbc.RowData
Set the result set that 'owns' this RowData
setOwner(ResultSet) - Method in class com.mysql.jdbc.RowDataDynamic
 
setOwner(ResultSet) - Method in class com.mysql.jdbc.RowDataStatic
 
setPosition(int) - Method in class com.mysql.jdbc.Buffer
Set the current position to write to/ read from
setProfileSql(boolean) - Method in class com.mysql.jdbc.Connection
Should the driver do profiling?
setProfileSql(boolean) - Method in class com.mysql.jdbc.MysqlIO
Should the driver generate SQL statement profiles?
setQueryTimeout(int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setQueryTimeout(int) - Method in class com.mysql.jdbc.Statement
Sets the queryTimeout limit
setReadInfoMsgEnabled(boolean) - Method in class com.mysql.jdbc.Connection
 
setReadOnly(boolean) - Method in class com.mysql.jdbc.Connection
You can put a connection in read-only mode as a hint to enable database optimizations Note: setReadOnly cannot be called while in the middle of a transaction
setRef(int, Ref) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setRef(int, Ref) - Method in class com.mysql.jdbc.PreparedStatement
JDBC 2.0 Set a REF(<structured-type>) parameter.
setResultSetConcurrency(int) - Method in class com.mysql.jdbc.PreparedStatement
Sets the concurrency for result sets generated by this statement
setResultSetConcurrency(int) - Method in class com.mysql.jdbc.ResultSet
Sets the concurrency (JDBC2)
setResultSetConcurrency(int) - Method in class com.mysql.jdbc.Statement
Sets the concurrency for result sets generated by this statement
setResultSetConcurrency(int) - Method in class com.mysql.jdbc.UpdatableResultSet
Sets the concurrency type of this result set
setResultSetType(int) - Method in class com.mysql.jdbc.PreparedStatement
Sets the result set type for result sets generated by this statement
setResultSetType(int) - Method in class com.mysql.jdbc.ResultSet
Sets the result set type for (JDBC2)
setResultSetType(int) - Method in class com.mysql.jdbc.Statement
Sets the result set type for result sets generated by this statement
setRetrieveGeneratedKeys(boolean) - Method in class com.mysql.jdbc.PreparedStatement
Sets wheather or not this statement should retreive generated keys.
setSavepoint() - Method in class com.mysql.jdbc.Connection
 
setSavepoint(String) - Method in class com.mysql.jdbc.Connection
 
setSendLength(int) - Method in class com.mysql.jdbc.Buffer
 
setServerInfo(String) - Method in class com.mysql.jdbc.ResultSet
Sets server info (if any)
setShort(int, short) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setShort(String, short) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setShort(int, short) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java short value.
setStatement(Statement) - Method in class com.mysql.jdbc.ResultSet
 
setString(long, String) - Method in class com.mysql.jdbc.Clob
 
setString(long, String, int, int) - Method in class com.mysql.jdbc.Clob
 
setString(int, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setString(String, String) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setString(int, String) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a Java String value.
setTime(int, Time) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTime(int, Time, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTime(String, Time, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTime(String, Time) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTime(int, Time) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Time value.
setTime(int, Time, Calendar) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Time value.
setTimestamp(int, Timestamp) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTimestamp(int, Timestamp, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTimestamp(String, Timestamp, Calendar) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTimestamp(String, Timestamp) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setTimestamp(int, Timestamp) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Timestamp value.
setTimestamp(int, Timestamp, Calendar) - Method in class com.mysql.jdbc.PreparedStatement
Set a parameter to a java.sql.Timestamp value.
setTransactionIsolation(int) - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
setTypeMap(Map) - Method in class com.mysql.jdbc.Connection
JDBC 2.0 Install a type-map object as the default type-map for this connection
setURL(String, URL) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setURL(int, URL) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
setURL(int, URL) - Method in class com.mysql.jdbc.PreparedStatement
 
setUnicodeStream(int, InputStream, int) - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
Deprecated. -- we know, but we need to override...
setUnicodeStream(int, InputStream, int) - Method in class com.mysql.jdbc.PreparedStatement
Deprecated.  
setUseSSL(boolean) - Method in class com.mysql.jdbc.Connection
Set whether or not this connection should use SSL
setWasMultiPacket(boolean) - Method in class com.mysql.jdbc.Buffer
Sets whether this packet was part of a multipacket
setWatcher(OutputStreamWatcher) - Method in class com.mysql.jdbc.WatchableOutputStream
DOCUMENT ME!
setWatcher(WriterWatcher) - Method in class com.mysql.jdbc.WatchableWriter
DOCUMENT ME!
shouldNotHappen(Exception) - Static method in class com.mysql.jdbc.AssertionFailedException
Convenience method.
shutdown() - Method in class com.mysql.jdbc.MiniAdmin
Shuts down the MySQL server at the other end of the connection that this MiniAdmin was created from/for.
shutdownServer() - Method in class com.mysql.jdbc.Connection
Used by MiniAdmin to shutdown a MySQL server
size() - Method in interface com.mysql.jdbc.RowData
Only works on non dynamic result sets.
size() - Method in class com.mysql.jdbc.RowDataDynamic
Only works on non dynamic result sets.
size() - Method in class com.mysql.jdbc.RowDataStatic
DOCUMENT ME!
skip(long) - Method in class com.mysql.jdbc.CompressedInputStream
 
split(String, String, boolean) - Static method in class com.mysql.jdbc.StringUtils
Splits stringToSplit into a list, using the given delimitter
sqlQuery(String, int, String, Connection, int, boolean, String) - Method in class com.mysql.jdbc.MysqlIO
Send a query specified in the String "Query" to the MySQL server.
sqlQueryDirect(Buffer, int, Connection, int, boolean, String) - Method in class com.mysql.jdbc.MysqlIO
Send a query stored in a packet directly to the server.
stackTraceToString(Throwable) - Static method in class com.mysql.jdbc.Util
Converts a nested exception into a nicer message
startsWithIgnoreCase(String, String) - Static method in class com.mysql.jdbc.StringUtils
Determines whether or not the string 'searchIn' contains the string 'searchFor', dis-regarding case.
startsWithIgnoreCase(String, int, String) - Static method in class com.mysql.jdbc.StringUtils
Determines whether or not the string 'searchIn' contains the string 'searchFor', dis-regarding case starting at 'startAt' Shorthand for a String.regionMatch(...)
startsWithIgnoreCaseAndWs(String, String) - Static method in class com.mysql.jdbc.StringUtils
Determines whether or not the sting 'searchIn' contains the string 'searchFor', di-regarding case and leading whitespace
statementLength - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
staticSql - Variable in class com.mysql.jdbc.PreparedStatement.ParseInfo
 
storesLowerCaseIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in lower case?
storesLowerCaseQuotedIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in lower case? A JDBC compliant driver will always return false.
storesMixedCaseIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in mixed case?
storesMixedCaseQuotedIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in mixed case? A JDBC compliant driver will always return false.
storesUpperCaseIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in upper case?
storesUpperCaseQuotedIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in upper case? A JDBC compliant driver will always return true.
streamClosed(WatchableOutputStream) - Method in class com.mysql.jdbc.Blob
 
streamClosed(WatchableOutputStream) - Method in class com.mysql.jdbc.Clob
 
streamClosed(WatchableOutputStream) - Method in interface com.mysql.jdbc.OutputStreamWatcher
Called when the OutputStream being watched has .close() called
streamLengths - Variable in class com.mysql.jdbc.PreparedStatement.BatchParams
 
supportsANSI92EntryLevelSQL() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ANSI92 entry level SQL grammar supported? All JDBC compliant drivers must return true.
supportsANSI92FullSQL() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ANSI92 full SQL grammar supported?
supportsANSI92IntermediateSQL() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ANSI92 intermediate SQL grammar supported?
supportsAlterTableWithAddColumn() - Method in class com.mysql.jdbc.DatabaseMetaData
Is "ALTER TABLE" with add column supported?
supportsAlterTableWithDropColumn() - Method in class com.mysql.jdbc.DatabaseMetaData
Is "ALTER TABLE" with drop column supported?
supportsBatchUpdates() - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Return true if the driver supports batch updates, else return false.
supportsCatalogsInDataManipulation() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a catalog name be used in a data manipulation statement?
supportsCatalogsInIndexDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a catalog name be used in a index definition statement?
supportsCatalogsInPrivilegeDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a catalog name be used in a privilege definition statement?
supportsCatalogsInProcedureCalls() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a catalog name be used in a procedure call statement?
supportsCatalogsInTableDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a catalog name be used in a table definition statement?
supportsColumnAliasing() - Method in class com.mysql.jdbc.DatabaseMetaData
Is column aliasing supported?
supportsConvert() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the CONVERT function between SQL types supported?
supportsConvert(int, int) - Method in class com.mysql.jdbc.DatabaseMetaData
Is CONVERT between the given SQL types supported?
supportsCoreSQLGrammar() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ODBC Core SQL grammar supported?
supportsCorrelatedSubqueries() - Method in class com.mysql.jdbc.DatabaseMetaData
Are correlated subqueries supported? A JDBC compliant driver always returns true.
supportsDataDefinitionAndDataManipulationTransactions() - Method in class com.mysql.jdbc.DatabaseMetaData
Are both data definition and data manipulation statements within a transaction supported?
supportsDataManipulationTransactionsOnly() - Method in class com.mysql.jdbc.DatabaseMetaData
Are only data manipulation statements within a transaction supported?
supportsDifferentTableCorrelationNames() - Method in class com.mysql.jdbc.DatabaseMetaData
If table correlation names are supported, are they restricted to be different from the names of the tables? A JDBC compliant driver always returns true.
supportsExpressionsInOrderBy() - Method in class com.mysql.jdbc.DatabaseMetaData
Are expressions in "ORDER BY" lists supported?
supportsExtendedSQLGrammar() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ODBC Extended SQL grammar supported?
supportsFullOuterJoins() - Method in class com.mysql.jdbc.DatabaseMetaData
Are full nested outer joins supported?
supportsGetGeneratedKeys() - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 3.0
supportsGroupBy() - Method in class com.mysql.jdbc.DatabaseMetaData
Is some form of "GROUP BY" clause supported?
supportsGroupByBeyondSelect() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT?
supportsGroupByUnrelated() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a "GROUP BY" clause use columns not in the SELECT?
supportsIntegrityEnhancementFacility() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the SQL Integrity Enhancement Facility supported?
supportsIsolationLevel() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
supportsLikeEscapeClause() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the escape character in "LIKE" clauses supported? A JDBC compliant driver always returns true.
supportsLimitedOuterJoins() - Method in class com.mysql.jdbc.DatabaseMetaData
Is there limited support for outer joins? (This will be true if supportFullOuterJoins is true.)
supportsMinimumSQLGrammar() - Method in class com.mysql.jdbc.DatabaseMetaData
Is the ODBC Minimum SQL grammar supported? All JDBC compliant drivers must return true.
supportsMixedCaseIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database support mixed case unquoted SQL identifiers?
supportsMixedCaseQuotedIdentifiers() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database support mixed case quoted SQL identifiers? A JDBC compliant driver will always return true.
supportsMultipleOpenResults() - Method in class com.mysql.jdbc.DatabaseMetaData
 
supportsMultipleResultSets() - Method in class com.mysql.jdbc.DatabaseMetaData
Are multiple ResultSets from a single execute supported?
supportsMultipleTransactions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can we have multiple transactions open at once (on different connections)?
supportsNamedParameters() - Method in class com.mysql.jdbc.DatabaseMetaData
 
supportsNonNullableColumns() - Method in class com.mysql.jdbc.DatabaseMetaData
Can columns be defined as non-nullable? A JDBC compliant driver always returns true.
supportsOpenCursorsAcrossCommit() - Method in class com.mysql.jdbc.DatabaseMetaData
Can cursors remain open across commits?
supportsOpenCursorsAcrossRollback() - Method in class com.mysql.jdbc.DatabaseMetaData
Can cursors remain open across rollbacks?
supportsOpenStatementsAcrossCommit() - Method in class com.mysql.jdbc.DatabaseMetaData
Can statements remain open across commits?
supportsOpenStatementsAcrossRollback() - Method in class com.mysql.jdbc.DatabaseMetaData
Can statements remain open across rollbacks?
supportsOrderByUnrelated() - Method in class com.mysql.jdbc.DatabaseMetaData
Can an "ORDER BY" clause use columns not in the SELECT?
supportsOuterJoins() - Method in class com.mysql.jdbc.DatabaseMetaData
Is some form of outer join supported?
supportsPositionedDelete() - Method in class com.mysql.jdbc.DatabaseMetaData
Is positioned DELETE supported?
supportsPositionedUpdate() - Method in class com.mysql.jdbc.DatabaseMetaData
Is positioned UPDATE supported?
supportsQuotedIdentifiers() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
supportsResultSetConcurrency(int, int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Does the database support the concurrency type in combination with the given result set type?
supportsResultSetHoldability(int) - Method in class com.mysql.jdbc.DatabaseMetaData
 
supportsResultSetType(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Does the database support the given result set type?
supportsSavepoints() - Method in class com.mysql.jdbc.DatabaseMetaData
 
supportsSchemasInDataManipulation() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a schema name be used in a data manipulation statement?
supportsSchemasInIndexDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a schema name be used in an index definition statement?
supportsSchemasInPrivilegeDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a schema name be used in a privilege definition statement?
supportsSchemasInProcedureCalls() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a schema name be used in a procedure call statement?
supportsSchemasInTableDefinitions() - Method in class com.mysql.jdbc.DatabaseMetaData
Can a schema name be used in a table definition statement?
supportsSelectForUpdate() - Method in class com.mysql.jdbc.DatabaseMetaData
Is SELECT for UPDATE supported?
supportsStatementPooling() - Method in class com.mysql.jdbc.DatabaseMetaData
 
supportsStoredProcedures() - Method in class com.mysql.jdbc.DatabaseMetaData
Are stored procedure calls using the stored procedure escape syntax supported?
supportsSubqueriesInComparisons() - Method in class com.mysql.jdbc.DatabaseMetaData
Are subqueries in comparison expressions supported? A JDBC compliant driver always returns true.
supportsSubqueriesInExists() - Method in class com.mysql.jdbc.DatabaseMetaData
Are subqueries in exists expressions supported? A JDBC compliant driver always returns true.
supportsSubqueriesInIns() - Method in class com.mysql.jdbc.DatabaseMetaData
Are subqueries in "in" statements supported? A JDBC compliant driver always returns true.
supportsSubqueriesInQuantifieds() - Method in class com.mysql.jdbc.DatabaseMetaData
Are subqueries in quantified expressions supported? A JDBC compliant driver always returns true.
supportsTableCorrelationNames() - Method in class com.mysql.jdbc.DatabaseMetaData
Are table correlation names supported? A JDBC compliant driver always returns true.
supportsTransactionIsolationLevel(int) - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database support the given transaction isolation level?
supportsTransactions() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
supportsTransactions() - Method in class com.mysql.jdbc.DatabaseMetaData
Are transactions supported? If not, commit is a noop and the isolation level is TRANSACTION_NONE.
supportsUnion() - Method in class com.mysql.jdbc.DatabaseMetaData
Is SQL UNION supported? A JDBC compliant driver always returns true.
supportsUnionAll() - Method in class com.mysql.jdbc.DatabaseMetaData
Is SQL UNION ALL supported? A JDBC compliant driver always returns true.
syncUpdate() - Method in class com.mysql.jdbc.UpdatableResultSet
Reset UPDATE prepared statement to value in current row.

T

TIME - Static variable in class com.mysql.jdbc.MysqlDefs
 
TIMEZONE_MAPPINGS - Static variable in class com.mysql.jdbc.TimeUtil
 
TRACE - Static variable in class com.mysql.jdbc.NonRegisteringDriver
Should the driver generate method-call traces?
TimeUtil - class com.mysql.jdbc.TimeUtil.
Timezone conversion routines
TimeUtil() - Constructor for class com.mysql.jdbc.TimeUtil
 
thisRow - Variable in class com.mysql.jdbc.ResultSet
Pointer to current row data
timeout - Variable in class com.mysql.jdbc.Statement
The timeout for a query
toAsciiString(byte[]) - Static method in class com.mysql.jdbc.StringUtils
Returns the bytes as an ASCII String.
toAsciiString(byte[], int, int) - Static method in class com.mysql.jdbc.StringUtils
Returns the bytes as an ASCII String.
toBytes(String) - Method in class com.mysql.jdbc.SingleByteCharsetConverter
Convert the given string to an array of bytes.
toBytes(String, int, int) - Method in class com.mysql.jdbc.SingleByteCharsetConverter
Convert the given string to an array of bytes.
toString() - Method in class com.mysql.jdbc.Field
DOCUMENT ME!
toString() - Method in class com.mysql.jdbc.PreparedStatement
Returns this PreparedStatement represented as a string.
toString(byte[]) - Method in class com.mysql.jdbc.SingleByteCharsetConverter
Convert the byte buffer to a string using this instance's character encoding.
toString(byte[], int, int) - Method in class com.mysql.jdbc.SingleByteCharsetConverter
Convert the byte buffer from startPos to a length of length to a string using this instance's character encoding.
toStringDefaultEncoding(byte[], int, int) - Static method in class com.mysql.jdbc.SingleByteCharsetConverter
Convert the byte buffer from startPos to a length of length to a string using the default platform encoding.
trace(String) - Static method in class com.mysql.jdbc.Debug
Set the classes to trace.
truncate(long) - Method in class com.mysql.jdbc.Blob
 
truncate(long) - Method in class com.mysql.jdbc.Clob
 

U

UpdatableResultSet - class com.mysql.jdbc.UpdatableResultSet.
A result set that is updatable.
UpdatableResultSet(long, long) - Constructor for class com.mysql.jdbc.UpdatableResultSet
Creates a new UpdatableResultSet object.
UpdatableResultSet(String, Field[], RowData, Connection) - Constructor for class com.mysql.jdbc.UpdatableResultSet
Create a new ResultSet - Note that we create ResultSets to represent the results of everything.
UpdatableResultSet(Field[], RowData) - Constructor for class com.mysql.jdbc.UpdatableResultSet
Creates a new UpdatableResultSet object.
Util - class com.mysql.jdbc.Util.
Various utility methods for the driver.
Util() - Constructor for class com.mysql.jdbc.Util
 
Util.RandStructcture - class com.mysql.jdbc.Util.RandStructcture.
 
Util.RandStructcture() - Constructor for class com.mysql.jdbc.Util.RandStructcture
 
unpackField(Buffer, boolean) - Method in class com.mysql.jdbc.MysqlIO
Unpacks the Field information from the given packet.
unsetMaxRows(Statement) - Method in class com.mysql.jdbc.Connection
Called by statements on their .close() to let the connection know when it is safe to set the connection back to 'default' row limits.
updateArray(int, Array) - Method in class com.mysql.jdbc.ResultSet
 
updateArray(String, Array) - Method in class com.mysql.jdbc.ResultSet
 
updateAsciiStream(int, InputStream, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an ascii stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an ascii stream value.
updateAsciiStream(int, InputStream, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an ascii stream value.
updateAsciiStream(String, InputStream, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an ascii stream value.
updateBigDecimal(int, BigDecimal) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a BigDecimal value.
updateBigDecimal(String, BigDecimal) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a BigDecimal value.
updateBigDecimal(int, BigDecimal) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a BigDecimal value.
updateBigDecimal(String, BigDecimal) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a BigDecimal value.
updateBinaryStream(int, InputStream, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a binary stream value.
updateBinaryStream(String, InputStream, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a binary stream value.
updateBinaryStream(int, InputStream, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a binary stream value.
updateBinaryStream(String, InputStream, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a binary stream value.
updateBlob(int, Blob) - Method in class com.mysql.jdbc.ResultSet
 
updateBlob(String, Blob) - Method in class com.mysql.jdbc.ResultSet
 
updateBlob(int, Blob) - Method in class com.mysql.jdbc.UpdatableResultSet
 
updateBlob(String, Blob) - Method in class com.mysql.jdbc.UpdatableResultSet
 
updateBoolean(int, boolean) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a boolean value.
updateBoolean(String, boolean) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a boolean value.
updateBoolean(int, boolean) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a boolean value.
updateBoolean(String, boolean) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a boolean value.
updateByte(int, byte) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a byte value.
updateByte(String, byte) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a byte value.
updateByte(int, byte) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a byte value.
updateByte(String, byte) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a byte value.
updateBytes(int, byte[]) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a byte array value.
updateBytes(String, byte[]) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a byte array value.
updateBytes(int, byte[]) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a byte array value.
updateBytes(String, byte[]) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a byte array value.
updateCharacterStream(int, Reader, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a character stream value.
updateCharacterStream(String, Reader, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a character stream value.
updateCharacterStream(int, Reader, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a character stream value.
updateCharacterStream(String, Reader, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a character stream value.
updateClob(int, Clob) - Method in class com.mysql.jdbc.ResultSet
 
updateClob(String, Clob) - Method in class com.mysql.jdbc.ResultSet
 
updateClob(int, Clob) - Method in class com.mysql.jdbc.UpdatableResultSet
 
updateCount - Variable in class com.mysql.jdbc.ResultSet
How many rows were affected by UPDATE/INSERT/DELETE?
updateCount - Variable in class com.mysql.jdbc.Statement
The update count for this statement
updateDate(int, Date) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Date value.
updateDate(String, Date) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Date value.
updateDate(int, Date) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Date value.
updateDate(String, Date) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Date value.
updateDouble(int, double) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Double value.
updateDouble(String, double) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a double value.
updateDouble(int, double) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Double value.
updateDouble(String, double) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a double value.
updateFloat(int, float) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a float value.
updateFloat(String, float) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a float value.
updateFloat(int, float) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a float value.
updateFloat(String, float) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a float value.
updateId - Variable in class com.mysql.jdbc.ResultSet
Value generated for AUTO_INCREMENT columns
updateInt(int, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an integer value.
updateInt(String, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an integer value.
updateInt(int, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an integer value.
updateInt(String, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an integer value.
updateLong(int, long) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a long value.
updateLong(String, long) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a long value.
updateLong(int, long) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a long value.
updateLong(String, long) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a long value.
updateNull(int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Give a nullable column a null value.
updateNull(String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a null value.
updateNull(int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Give a nullable column a null value.
updateNull(String) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a null value.
updateObject(int, Object, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(int, Object) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(String, Object, int) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(String, Object) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(int, Object, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(int, Object) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(String, Object, int) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an Object value.
updateObject(String, Object) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with an Object value.
updateRef(int, Ref) - Method in class com.mysql.jdbc.ResultSet
 
updateRef(String, Ref) - Method in class com.mysql.jdbc.ResultSet
 
updateRow() - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update the underlying database with the new contents of the current row.
updateRow() - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update the underlying database with the new contents of the current row.
updateShort(int, short) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a short value.
updateShort(String, short) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a short value.
updateShort(int, short) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a short value.
updateShort(String, short) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a short value.
updateString(int, String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a String value.
updateString(String, String) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a String value.
updateString(int, String) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a String value.
updateString(String, String) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a String value.
updateTime(int, Time) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Time value.
updateTime(String, Time) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Time value.
updateTime(int, Time) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Time value.
updateTime(String, Time) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Time value.
updateTimestamp(int, Timestamp) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Timestamp value.
updateTimestamp(String, Timestamp) - Method in class com.mysql.jdbc.ResultSet
JDBC 2.0 Update a column with a Timestamp value.
updateTimestamp(int, Timestamp) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Timestamp value.
updateTimestamp(String, Timestamp) - Method in class com.mysql.jdbc.UpdatableResultSet
JDBC 2.0 Update a column with a Timestamp value.
updatesAreDetected(int) - Method in class com.mysql.jdbc.DatabaseMetaData
JDBC 2.0 Determine whether or not a visible row update can be detected by calling ResultSet.rowUpdated().
useAnsiQuotedIdentifiers() - Method in class com.mysql.jdbc.Connection
 
useCompression() - Method in class com.mysql.jdbc.Connection
Should we use compression?
useHostsInPrivileges() - Method in class com.mysql.jdbc.Connection
 
useMaxRows() - Method in class com.mysql.jdbc.Connection
Has maxRows() been set?
useParanoidErrorMessages() - Method in class com.mysql.jdbc.Connection
Returns the paranoidErrorMessages.
useSSL() - Method in class com.mysql.jdbc.Connection
Should we use SSL?
useStreamLengthsInPrepStmts() - Method in class com.mysql.jdbc.Connection
 
useStrictFloatingPoint() - Method in class com.mysql.jdbc.Connection
Should we enable work-arounds for floating point rounding errors in the server?
useStrictUpdates() - Method in class com.mysql.jdbc.Connection
Returns the strictUpdates value.
useTimezone() - Method in class com.mysql.jdbc.Connection
DOCUMENT ME!
useUnicode() - Method in class com.mysql.jdbc.Connection
Should unicode character mapping be used ?
usesLocalFilePerTable() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database use a file for each table?
usesLocalFiles() - Method in class com.mysql.jdbc.DatabaseMetaData
Does the database store tables in a local file?

V

versionMeetsMinimum(int, int, int) - Method in class com.mysql.jdbc.MysqlIO
Does the version of the MySQL server we are connected to meet the given minimums?

W

WatchableOutputStream - class com.mysql.jdbc.WatchableOutputStream.
A java.io.OutputStream used to write ASCII data into Blobs and Clobs
WatchableOutputStream() - Constructor for class com.mysql.jdbc.WatchableOutputStream
 
WatchableWriter - class com.mysql.jdbc.WatchableWriter.
A java.io.Writer used to write unicode data into Blobs and Clobs
WatchableWriter() - Constructor for class com.mysql.jdbc.WatchableWriter
 
WriterWatcher - interface com.mysql.jdbc.WriterWatcher.
Objects that want to be notified of lifecycle events on a WatchableWriter should implement this interface, and register themselves with setWatcher() on the WatchableWriter instance.
warningChain - Variable in class com.mysql.jdbc.ResultSet
The warning chain
warningChain - Variable in class com.mysql.jdbc.Statement
The warnings chain.
wasMultiPacket() - Method in class com.mysql.jdbc.Buffer
Was this packet part of a multipacket?
wasNull() - Method in class com.mysql.jdbc.Connection.UltraDevWorkAround
 
wasNull() - Method in class com.mysql.jdbc.ResultSet
A column may have the value of SQL NULL; wasNull() reports whether the last column read had this special value.
wasNullFlag - Variable in class com.mysql.jdbc.ResultSet
Did the previous value retrieval find a NULL?
write(byte[], int, int) - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
write(byte[]) - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
write(int) - Method in class com.mysql.jdbc.NamedPipeSocketFactory.RandomAccessFileOutputStream
 
writeByte(byte) - Method in class com.mysql.jdbc.Buffer
 
writeBytesNoNull(byte[]) - Method in class com.mysql.jdbc.Buffer
 
writeBytesNoNull(byte[], int, int) - Method in class com.mysql.jdbc.Buffer
 
writeDouble(double) - Method in class com.mysql.jdbc.Buffer
 
writeFloat(float) - Method in class com.mysql.jdbc.Buffer
 
writeInt(int) - Method in class com.mysql.jdbc.Buffer
 
writeLong(long) - Method in class com.mysql.jdbc.Buffer
 
writeLongInt(int) - Method in class com.mysql.jdbc.Buffer
 
writeLongLong(long) - Method in class com.mysql.jdbc.Buffer
 
writeString(String) - Method in class com.mysql.jdbc.Buffer
 
writeStringNoNull(String) - Method in class com.mysql.jdbc.Buffer
 
writeStringNoNull(String, String, String, SingleByteCharsetConverter, boolean) - Method in class com.mysql.jdbc.Buffer
 
writerClosed(WatchableWriter) - Method in class com.mysql.jdbc.Clob
 
writerClosed(WatchableWriter) - Method in interface com.mysql.jdbc.WriterWatcher
Called when the Writer being watched has .close() called

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