Overview | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT FRAMES  | NO FRAMES
A C D E F G H I J M N O P R S U W

A

acceptsURL(String) - Method in class org.gjt.mm.mysql.Driver
Returns true if the driver thinks it can open a connection to the given URL. Typically, drivers will return true if they understand the subprotocol specified in the URL and false if they don't.
allProceduresAreCallable() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can all the procedures returned by getProcedures be called by the current user?
allTablesAreSelectable() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can all the tables returned by getTable be SELECTed by the current user?

C

Connection(String, int, Properties, String, String, Driver) - Constructor for class org.gjt.mm.mysql.Connection
Connect to a MySQL Server.
cancel() - Method in class org.gjt.mm.mysql.Statement
Cancel can be used by one thread to cancel a statement that is being executed by another thread.
clearParameters() - Method in class org.gjt.mm.mysql.PreparedStatement
In general, parameter values remain in force for repeated used of a Statement.
clearWarnings() - Method in class org.gjt.mm.mysql.Connection
After this call, getWarnings returns null until a new warning is reported for this connection.
clearWarnings() - Method in class org.gjt.mm.mysql.ResultSet
After this call, getWarnings returns null until a new warning is reported for this ResultSet
clearWarnings() - Method in class org.gjt.mm.mysql.Statement
After this call, getWarnings returns null until a new warning is reported for this Statement.
close() - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.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 class org.gjt.mm.mysql.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.
commit() - Method in class org.gjt.mm.mysql.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, Properties) - Method in class org.gjt.mm.mysql.Driver
Try to make a database connection to the given URL. The driver should return "null" if it realizes it is the wrong kind of driver to connect to the given URL. This will be common, as when the JDBC driverManager is asked to connect to a given URL, it passes the URL to each loaded driver in turn.
Connection - class org.gjt.mm.mysql.Connection.
 
createStatement() - Method in class org.gjt.mm.mysql.Connection
SQL statements without parameters are normally executed using Statement objects.

D

DatabaseMetaData(Connection) - Constructor for class org.gjt.mm.mysql.DatabaseMetaData
 
Driver() - Constructor for class org.gjt.mm.mysql.Driver
Construct a new driver and register it with DriverManager
database() - Method in class org.gjt.mm.mysql.Driver
 
DatabaseMetaData - class org.gjt.mm.mysql.DatabaseMetaData.
 
dataDefinitionCausesTransactionCommit() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does a data definition statement within a transaction force the transaction to commit?
dataDefinitionIgnoredInTransactions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is a data definition statement within a transaction ignored?
doesMaxRowSizeIncludeBlobs() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Did getMaxRowSize() include LONGVARCHAR and LONGVARBINARY blobs?
Driver - class org.gjt.mm.mysql.Driver.
 

E

EscapeProcessor - class org.gjt.mm.mysql.EscapeProcessor.
 
escapeSQL(String) - Method in class org.gjt.mm.mysql.EscapeProcessor
 
execute() - Method in class org.gjt.mm.mysql.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
executeQuery() - Method in class org.gjt.mm.mysql.PreparedStatement
A Prepared SQL query is executed and its ResultSet is returned
executeQuery(String) - Method in class org.gjt.mm.mysql.Statement
Execute a SQL statement that retruns a single ResultSet
execute(String) - Method in class org.gjt.mm.mysql.Statement
Execute a SQL statement that may return multiple results.
executeUpdate() - Method in class org.gjt.mm.mysql.PreparedStatement
Execute a SQL INSERT, UPDATE or DELETE statement.
executeUpdate(String) - Method in class org.gjt.mm.mysql.Statement
Execute a SQL INSERT, UPDATE or DELETE statement.

F

findColumn(String) - Method in class org.gjt.mm.mysql.ResultSet
Map a ResultSet column name to a ResultSet column index

G

getAsciiStream(int) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.ResultSet
 
getAutoCommit() - Method in class org.gjt.mm.mysql.Connection
gets the current auto-commit state
getBestRowIdentifier(String, String, String, int, boolean) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of a table's optimal set of columns that uniquely identifies a row.
getBigDecimal(int, int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a java.lang.
getBigDecimal(String, int) - Method in class org.gjt.mm.mysql.ResultSet
 
getBinaryStream(int) - Method in class org.gjt.mm.mysql.ResultSet
A column value can also be retrieved as a binary strea.
getBinaryStream(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getBoolean(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java boolean
getBoolean(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getByte(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java byte.
getByte(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getBytes(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java byte array.
getBytes(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getCatalog() - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.ResultSetMetaData
What's a column's table's catalog name?
getCatalogs() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get the catalog names available in this database.
getCatalogSeparator() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the separator between catalog and table name?
getCatalogTerm() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the database vendor's preferred term for "catalog"?
getColumnCount() - Method in class org.gjt.mm.mysql.ResultSetMetaData
Whats the number of columns in the ResultSet?
getColumnDisplaySize(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is the column's normal maximum width in characters?
getColumnLabel(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is the suggested column title for use in printouts and displays?
getColumnName(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What's a column's name?
getColumnPrivileges(String, String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of the access rights for a table's columns.
getColumns(String, String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of table columns available in a catalog.
getColumnTypeName(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Whats is the column's data source specific type name?
getColumnType(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is a column's SQL Type?
getCrossReference(String, String, String, String, String, String) - Method in class org.gjt.mm.mysql.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.)
getCursorName() - Method in class org.gjt.mm.mysql.ResultSet
Get the name of the SQL cursor used by this ResultSet

In SQL, a result table is retrieved though a cursor that is named.

getDatabaseProductName() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the name of this database product?
getDatabaseProductVersion() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the version of this database product?
getDate(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a java.sql.
getDate(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getDefaultTransactionIsolation() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the database's default transaction isolation level?
getDouble(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java double.
getDouble(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getDriverMajorVersion() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's this JDBC driver's major version number?
getDriverMinorVersion() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's this JDBC driver's minor version number?
getDriverName() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the name of this JDBC driver?
getDriverVersion() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the version of this JDBC driver?
getExportedKeys(String, String, String) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.DatabaseMetaData
Get all the "extra" characters that can be used in unquoted identifier names (those beyond a-z, 0-9 and _).
getFloat(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java float.
getFloat(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getIdentifierQuoteString() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the string used to quote SQL identifiers?
getImportedKeys(String, String, String) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.DatabaseMetaData
Get a description of a table's indices and statistics.
getInt(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java int.
getInt(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getLong(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java long.
getLong(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getMajorVersion() - Method in class org.gjt.mm.mysql.Driver
Gets the drivers major version number
getMaxBinaryLiteralLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
How many hex characters can you have in an inline binary literal?
getMaxCatalogNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a catalog name?
getMaxCharLiteralLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the max length for a character literal?
getMaxColumnNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the limit on column name length?
getMaxColumnsInGroupBy() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum number of columns in a "GROUP BY" clause?
getMaxColumnsInIndex() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum number of columns allowed in an index?
getMaxColumnsInOrderBy() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum number of columns in an "ORDER BY" clause?
getMaxColumnsInSelect() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum number of columns in a "SELECT" list?
getMaxColumnsInTable() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's maximum number of columns in a table?
getMaxConnections() - Method in class org.gjt.mm.mysql.DatabaseMetaData
How many active connections can we have at a time to this database?
getMaxCursorNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum cursor name length?
getMaxFieldSize() - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of an index (in bytes)?
getMaxProcedureNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a procedure name?
getMaxRowSize() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a single row?
getMaxRows() - Method in class org.gjt.mm.mysql.Statement
The maxRows limit is set to limit the number of rows that any ResultSet can contain.
getMaxSchemaNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length allowed for a schema name?
getMaxStatementLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a SQL statement?
getMaxStatements() - Method in class org.gjt.mm.mysql.DatabaseMetaData
How many active statements can we have open at one time to this database?
getMaxTableNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a table name?
getMaxTablesInSelect() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum number of tables in a SELECT?
getMaxUserNameLength() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the maximum length of a user name?
getMetaData() - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.ResultSet
The numbers, types and properties of a ResultSet's columns are provided by the getMetaData method
getMinorVersion() - Method in class org.gjt.mm.mysql.Driver
Get the drivers minor version number
getMoreResults() - Method in class org.gjt.mm.mysql.Statement
getMoreResults moves to a Statement's next result.
getNumericFunctions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a comma separated list of math functions.
getObject(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java object

This method will return the value of the given column as a Java object.

getObject(String) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java object

This method will return the value of the given column as a Java object.

getPrecision(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is a column's number of decimal digits.
getPrimaryKeys(String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of a table's primary key columns.
getProcedureColumns(String, String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of a catalog's stored procedure parameters and result columns.
getProcedures(String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of stored procedures available in a catalog.
getProcedureTerm() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the database vendor's preferred term for "procedure"?
getPropertyInfo(String, Properties) - Method in class org.gjt.mm.mysql.Driver
The getPropertyInfo method is intended to allow a generic GUI tool to discover what properties it should prompt a human for in order to get enough information to connect to a database.
getQueryTimeout() - Method in class org.gjt.mm.mysql.Statement
The queryTimeout limit is the number of seconds the driver will wait for a Statement to execute.
getResultSet() - Method in class org.gjt.mm.mysql.Statement
getResultSet returns the current result as a ResultSet.
getScale(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is a column's number of digits to the right of the decimal point?
getSchemaName(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
What is a column's table's schema?
getSchemas() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get the schema names available in this database.
getSchemaTerm() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the database vendor's preferred term for "schema"?
getSearchStringEscape() - Method in class org.gjt.mm.mysql.DatabaseMetaData
This is the string that can be used to escape '_' or '%' in the string pattern style catalog search parameters.
getShort(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java short.
getShort(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getSQLKeywords() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a comma separated list of all a database's SQL keywords that are NOT also SQL92 keywords.
getStringFunctions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a comma separated list of string functions.
getString(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a Java String
getString(String) - Method in class org.gjt.mm.mysql.ResultSet
The following routines simply convert the columnName into a columnIndex and then call the appropriate routine above.
getSystemFunctions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a comma separated list of system functions.
getTableName(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Whats a column's table's name?
getTablePrivileges(String, String, String) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of the access rights for each table available in a catalog.
getTables(String, String, String, String[]) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of tables available in a catalog.
getTableTypes() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get the table types available in this database.
getTimeDateFunctions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a comma separated list of time and date functions.
getTime(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a java.sql.
getTime(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getTimestamp(int) - Method in class org.gjt.mm.mysql.ResultSet
Get the value of a column in the current row as a java.sql.
getTimestamp(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getTransactionIsolation() - Method in class org.gjt.mm.mysql.Connection
Get this Connection's current transaction isolation mode.
getTypeInfo() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Get a description of all the standard SQL types supported by this database.
getUnicodeStream(int) - Method in class org.gjt.mm.mysql.ResultSet
A column value can also be retrieved as a stream of Unicode characters.
getUnicodeStream(String) - Method in class org.gjt.mm.mysql.ResultSet
 
getUpdateCount() - Method in class org.gjt.mm.mysql.Statement
getUpdateCount returns the current result as an update count, if the result is a ResultSet or there are no more results, -1 is returned.
getURL() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's the url for this database?
getUserName() - Method in class org.gjt.mm.mysql.DatabaseMetaData
What's our user name as known to the database?
getVersionColumns(String, String, String) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.Connection
The first warning reported by calls on this Connection is returned.
getWarnings() - Method in class org.gjt.mm.mysql.ResultSet
The first warning reported by calls on this ResultSet is returned.
getWarnings() - Method in class org.gjt.mm.mysql.Statement
The first warning reported by calls on this Statement is returned.

H

host() - Method in class org.gjt.mm.mysql.Driver
 

I

isAutoIncrement(int) - Method in class org.gjt.mm.mysql.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.
isCaseSensitive(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Does a column's case matter?
isCatalogAtStart() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does a catalog appear at the start of a qualified table name?
isClosed() - Method in class org.gjt.mm.mysql.Connection
Tests to see if a Connection is closed
isCurrency(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Is the column a cash value?
isDefinitelyWritable(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Will a write on this column definately succeed?
isNullable(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Can you put a NULL in this column?
isReadOnly() - Method in class org.gjt.mm.mysql.Connection
Tests to see if the connection is in Read Only Mode.
isReadOnly() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the database in read-only mode?
isReadOnly(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Is the column definitely not writable?
isSearchable(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Can the column be used in a WHERE clause?
isSigned(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Is the column a signed number?
isWritable(int) - Method in class org.gjt.mm.mysql.ResultSetMetaData
Is it possible for a write on the column to succeed?

J

jdbcCompliant() - Method in class org.gjt.mm.mysql.Driver
Report whether the driver is a genuine JDBC compliant driver.

M

MysqlIO - class org.gjt.mm.mysql.MysqlIO.
 

N

nativeSQL(String) - Method in class org.gjt.mm.mysql.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.
next() - Method in class org.gjt.mm.mysql.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.
nullPlusNonNullIsNull() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are concatenations between NULL and non-NULL values NULL?
nullsAreSortedAtEnd() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are NULL values sorted at the end regardless of sort order?
nullsAreSortedAtStart() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are NULL values sorted at the start regardless of sort order?
nullsAreSortedHigh() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are NULL values sorted high?
nullsAreSortedLow() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are NULL values sorted low?

O

org.gjt.mm.mysql - package org.gjt.mm.mysql
 

P

PreparedStatement(Connection, String) - Constructor for class org.gjt.mm.mysql.PreparedStatement
Constructor for the PreparedStatement class.
port() - Method in class org.gjt.mm.mysql.Driver
 
prepareCall(String) - Method in class org.gjt.mm.mysql.Connection
A SQL stored procedure call statement is handled by creating a CallableStatement for it.
PreparedStatement - class org.gjt.mm.mysql.PreparedStatement.
 
prepareStatement(String) - Method in class org.gjt.mm.mysql.Connection
A SQL statement with or without IN parameters can be pre-compiled and stored in a PreparedStatement object.
prev() - Method in class org.gjt.mm.mysql.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.
processEscape(String) - Method in class org.gjt.mm.mysql.EscapeProcessor
 
property(String) - Method in class org.gjt.mm.mysql.Driver
 

R

ResultSetMetaData - class org.gjt.mm.mysql.ResultSetMetaData.
 
ResultSet - class org.gjt.mm.mysql.ResultSet.
 
rollback() - Method in class org.gjt.mm.mysql.Connection
The method rollback() drops all changes made since the previous commit/rollback and releases any database locks currently held by the Connection.

S

Statement(Connection) - Constructor for class org.gjt.mm.mysql.Statement
Constructor for a Statement.
setAsciiStream(int, InputStream, int) - Method in class org.gjt.mm.mysql.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.
setAutoCommit(boolean) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.PreparedStatement
Set a parameter to a java.lang.
setBinaryStream(int, InputStream, int) - Method in class org.gjt.mm.mysql.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.
setBoolean(int, boolean) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java boolean value.
setByte(int, byte) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java byte value.
setBytes(int, byte[]) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java array of bytes.
setCatalog(String) - Method in class org.gjt.mm.mysql.Connection
A sub-space of this Connection's database may be selected by setting a catalog name.
setCursorName(String) - Method in class org.gjt.mm.mysql.Statement
setCursorName defines the SQL cursor name that will be used by subsequent execute methods.
setDate(int, Date) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a java.sql.
setDouble(int, double) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java double value.
setEscapeProcessing(boolean) - Method in class org.gjt.mm.mysql.Statement
If escape scanning is on (the default), the driver will do escape substitution before sending the SQL to the database.
setFloat(int, float) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java float value.
setInt(int, int) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java int value.
setLong(int, long) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java long value.
setMaxFieldSize(int) - Method in class org.gjt.mm.mysql.Statement
Sets the maxFieldSize
setMaxRows(int) - Method in class org.gjt.mm.mysql.Statement
Set the maximum number of rows
setNull(int, int) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to SQL NULL

Note: You must specify the parameters SQL type (although PostgreSQL ignores it)

setObject(int, Object, int, int) - Method in class org.gjt.mm.mysql.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 org.gjt.mm.mysql.PreparedStatement
 
setObject(int, Object) - Method in class org.gjt.mm.mysql.PreparedStatement
 
setQueryTimeout(int) - Method in class org.gjt.mm.mysql.Statement
Sets the queryTimeout limit
setReadOnly(boolean) - Method in class org.gjt.mm.mysql.Connection
You can put a connection in read-only mode as a hunt to enable database optimizations Note: setReadOnly cannot be called while in the middle of a transaction
setShort(int, short) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java short value.
setString(int, String) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a Java String value.
setTime(int, Time) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a java.sql.
setTimestamp(int, Timestamp) - Method in class org.gjt.mm.mysql.PreparedStatement
Set a parameter to a java.sql.
setTransactionIsolation(int) - Method in class org.gjt.mm.mysql.Connection
You can call this method to try to change the transaction isolation level using one of the TRANSACTION_* values.
setUnicodeStream(int, InputStream, int) - Method in class org.gjt.mm.mysql.PreparedStatement
When a very large Unicode value is input to a LONGVARCHAR parameter, it may be more practical to send it via a java.io.
Statement - class org.gjt.mm.mysql.Statement.
 
storesLowerCaseIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in lower case?
storesLowerCaseQuotedIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in lower case?
storesMixedCaseIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in mixed case?
storesMixedCaseQuotedIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in mixed case?
storesUpperCaseIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case unquoted SQL identifiers in upper case?
storesUpperCaseQuotedIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store mixed case quoted SQL identifiers in upper case?
supportsAlterTableWithAddColumn() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is "ALTER TABLE" with add column supported?
supportsAlterTableWithDropColumn() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is "ALTER TABLE" with drop column supported?
supportsANSI92EntryLevelSQL() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ANSI92 entry level SQL grammar supported?
supportsANSI92FullSQL() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ANSI92 full SQL grammar supported?
supportsANSI92IntermediateSQL() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ANSI92 intermediate SQL grammar supported?
supportsCatalogsInDataManipulation() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a catalog name be used in a data manipulation statement?
supportsCatalogsInIndexDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a catalog name be used in a index definition statement?
supportsCatalogsInPrivilegeDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a catalog name be used in a privilege definition statement?
supportsCatalogsInProcedureCalls() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a catalog name be used in a procedure call statement?
supportsCatalogsInTableDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a catalog name be used in a table definition statement?
supportsColumnAliasing() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is column aliasing supported?
supportsConvert() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the CONVERT function between SQL types supported?
supportsConvert(int, int) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is CONVERT between the given SQL types supported?
supportsCoreSQLGrammar() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ODBC Core SQL grammar supported?
supportsCorrelatedSubqueries() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are correlated subqueries supported?
supportsDataDefinitionAndDataManipulationTransactions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are both data definition and data manipulation statements within a transaction supported?
supportsDataManipulationTransactionsOnly() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are only data manipulation statements within a transaction supported?
supportsDifferentTableCorrelationNames() - Method in class org.gjt.mm.mysql.DatabaseMetaData
If table correlation names are supported, are they restricted to be different from the names of the tables?
supportsExpressionsInOrderBy() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are expressions in "ORDER BY" lists supported?
supportsExtendedSQLGrammar() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ODBC Extended SQL grammar supported?
supportsFullOuterJoins() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are full nested outer joins supported?
supportsGroupByBeyondSelect() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT?
supportsGroupBy() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is some form of "GROUP BY" clause supported?
supportsGroupByUnrelated() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a "GROUP BY" clause use columns not in the SELECT?
supportsIntegrityEnhancementFacility() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the SQL Integrity Enhancement Facility supported?
supportsLikeEscapeClause() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the escape character in "LIKE" clauses supported?
supportsLimitedOuterJoins() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is there limited support for outer joins?
supportsMinimumSQLGrammar() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is the ODBC Minimum SQL grammar supported?
supportsMixedCaseIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database support mixed case unquoted SQL identifiers?
supportsMixedCaseQuotedIdentifiers() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database support mixed case quoted SQL identifiers?
supportsMultipleResultSets() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are multiple ResultSets from a single execute supported?
supportsMultipleTransactions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can we have multiple transactions open at once (on different connections)?
supportsNonNullableColumns() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can columns be defined as non-nullable?
supportsOpenCursorsAcrossCommit() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can cursors remain open across commits?
supportsOpenCursorsAcrossRollback() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can cursors remain open across rollbacks?
supportsOpenStatementsAcrossCommit() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can statements remain open across commits?
supportsOpenStatementsAcrossRollback() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can statements remain open across rollbacks?
supportsOrderByUnrelated() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can an "ORDER BY" clause use columns not in the SELECT?
supportsOuterJoins() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is some form of outer join supported?
supportsPositionedDelete() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is positioned DELETE supported?
supportsPositionedUpdate() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is positioned UPDATE supported?
supportsSchemasInDataManipulation() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a schema name be used in a data manipulation statement?
supportsSchemasInIndexDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a schema name be used in an index definition statement?
supportsSchemasInPrivilegeDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a schema name be used in a privilege definition statement?
supportsSchemasInProcedureCalls() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a schema name be used in a procedure call statement?
supportsSchemasInTableDefinitions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Can a schema name be used in a table definition statement?
supportsSelectForUpdate() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is SELECT for UPDATE supported?
supportsStoredProcedures() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are stored procedure calls using the stored procedure escape syntax supported?
supportsSubqueriesInComparisons() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are subqueries in comparison expressions supported?
supportsSubqueriesInExists() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are subqueries in exists expressions supported?
supportsSubqueriesInIns() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are subqueries in "in" statements supported?
supportsSubqueriesInQuantifieds() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are subqueries in quantified expressions supported?
supportsTableCorrelationNames() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are table correlation names supported?
supportsTransactionIsolationLevel(int) - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database support the given transaction isolation level?
supportsTransactions() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Are transactions supported?
supportsUnionAll() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is SQL UNION ALL supported?
supportsUnion() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Is SQL UNION supported?

U

usesLocalFilePerTable() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database use a file for each table?
usesLocalFiles() - Method in class org.gjt.mm.mysql.DatabaseMetaData
Does the database store tables in a local file?

W

wasNull() - Method in class org.gjt.mm.mysql.ResultSet
A column may have the value of SQL NULL; wasNull() reports whether the last column read had this special value.

A C D E F G H I J M N O P R S U W
Overview | Package | Class | Tree | Deprecated | Index | Help
PREV | NEXT FRAMES  | NO FRAMES