Index
A B C D E F G I J L M N O P R S T U W
All Classes|All Packages
All Classes|All Packages
All Classes|All Packages
A
- abort(Executor) - Method in class org.monetdb.monetdbe.MonetConnection
-
Terminates an open connection.
- absolute(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the given row number in this ResultSet object.
- acceptsURL(String) - Method in class org.monetdb.monetdbe.MonetDriver
-
Retrieves whether the driver thinks that it can open a connection to the given URL.
- addBatch() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Adds a set of parameters to this PreparedStatement object's batch of commands.
- addBatch(String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Override the addBatch from the Statement to throw a SQLException
- addBatch(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
Adds the given SQL command to the current list of commands for this Statement object.
- afterLast() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the end of this ResultSet object, just after the last row.
- allProceduresAreCallable() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether the current user can call all the procedures returned by the method getProcedures.
- allTablesAreSelectable() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether the current user can use all the tables returned by the method getTables in a SELECT statement.
- autoCommitFailureClosesAllResultSets() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether a SQLException while autoCommit is true inidcates that all open ResultSets are closed, even ones that are holdable.
B
- batch - Variable in class org.monetdb.monetdbe.MonetStatement
-
Batched SQL queries to execute
- beforeFirst() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the front of this ResultSet object, just before the first row.
C
- cancel() - Method in class org.monetdb.monetdbe.MonetStatement
-
This feature is not currently supported.
- cancelRowUpdates() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- checkNotClosed() - Method in class org.monetdb.monetdbe.MonetStatement
-
Helper method to test whether the Statement object is closed When closed, it throws an SQLException
- clearBatch() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Empties this PreparedStatements object's current list of parameters.
- clearBatch() - Method in class org.monetdb.monetdbe.MonetStatement
-
Empties this Statement object's current list of SQL commands.
- clearParameters() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Clears the current parameter values immediately.
- clearWarnings() - Method in class org.monetdb.monetdbe.MonetConnection
-
Clears all warnings reported for this Connection object.
- clearWarnings() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Clears all warnings reported on this ResultSet object.
- clearWarnings() - Method in class org.monetdb.monetdbe.MonetStatement
-
Clears all warnings reported for this Statement object.
- close() - Method in class org.monetdb.monetdbe.MonetConnection
-
Releases this Connection object's database and JDBC resources immediately.
- close() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Releases this ResultSet object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
- close() - Method in class org.monetdb.monetdbe.MonetStatement
-
Releases this Statement object's database and JDBC resources immediately instead of waiting for this to happen when it is automatically closed.
- closeIfComplete() - Method in class org.monetdb.monetdbe.MonetStatement
-
Called by the result set object when it is closed Used to close statement if closeOnCompletion() was called
- closeOnCompletion() - Method in class org.monetdb.monetdbe.MonetStatement
-
Specifies that this Statement will be closed when all its dependent result sets are closed.
- commit() - Method in class org.monetdb.monetdbe.MonetConnection
-
Makes all changes made since the previous commit/rollback permanent and releases any database locks currently held by this Connection object.
- conn - Variable in class org.monetdb.monetdbe.MonetStatement
-
This statement's parent connection object
- connect(String, Properties) - Method in class org.monetdb.monetdbe.MonetDriver
-
Attempts to make a database connection to the given URL.
- convertTojavaClass(int, Class<?>) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Determines if the MonetDBe type can be converted to the Java class
- createArrayOf(String, Object[]) - Method in class org.monetdb.monetdbe.MonetConnection
-
Arrays are not yet currently supported.
- createBlob() - Method in class org.monetdb.monetdbe.MonetConnection
-
Constructs an object that implements the Blob interface.
- createClob() - Method in class org.monetdb.monetdbe.MonetConnection
-
Constructs an object that implements the Clob interface.
- createNClob() - Method in class org.monetdb.monetdbe.MonetConnection
-
NClobs are not yet currently supported.
- createSQLXML() - Method in class org.monetdb.monetdbe.MonetConnection
-
SQL XML is not yet currently supported.
- createStatement() - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a Statement object for sending SQL statements to the database.
- createStatement(int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a Statement object that will generate ResultSet objects with the given type and concurrency.
- createStatement(int, int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a Statement object that will generate ResultSet objects with the given type, concurrency, and holdability.
- createStruct(String, Object[]) - Method in class org.monetdb.monetdbe.MonetConnection
-
Structs are not yet currently supported.
D
- dataDefinitionCausesTransactionCommit() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does a data definition statement within a transaction force the transaction to commit? I think this means something like:
- dataDefinitionIgnoredInTransactions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is a data definition statement within a transaction ignored?
- dbNative - Variable in class org.monetdb.monetdbe.MonetConnection
-
The pointer to the C database object
- deleteRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- deletesAreDetected(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- doesMaxRowSizeIncludeBlobs() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Did getMaxRowSize() include the SQL data types LONGVARCHAR and LONGVARBINARY blobs? Yes I thought so...
E
- execute() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
- execute(String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Override the execute from the Statement to throw a SQLException
- execute(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
The execute method executes the given SQL statement and indicates the form of the first result.
- execute(String, int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- execute(String, int[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- execute(String, String[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeBatch() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Submits a batch of different parameterized versions of the prepared query to the database for execution.
- executeBatch() - Method in class org.monetdb.monetdbe.MonetStatement
-
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
- executeLargeBatch() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Submits a batch of different parameterized versions of the prepared query to the database for execution.
- executeLargeBatch() - Method in class org.monetdb.monetdbe.MonetStatement
-
Submits a batch of commands to the database for execution and if all commands execute successfully, returns an array of update counts.
- executeLargeUpdate() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Executes the SQL statement in this PreparedStatement object, which may be any kind of SQL statement.
- executeLargeUpdate(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
- executeLargeUpdate(String, int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeLargeUpdate(String, int[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeLargeUpdate(String, String[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeQuery() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Executes the SQL query in this PreparedStatement object and returns the ResultSet object generated by the query.
- executeQuery(String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Override the executeQuery from the Statement to throw a SQLException
- executeQuery(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
Executes the given SQL statement, which returns a single ResultSet object.
- executeUpdate() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Executes the SQL statement in this PreparedStatement object, which must be an SQL Data Manipulation Language (DML) statement, such as INSERT, UPDATE or DELETE; or an SQL statement that returns nothing, such as a DDL statement.
- executeUpdate(String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Override the executeUpdate from the Statement to throw a SQLException
- executeUpdate(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
Executes the given SQL statement, which may be an INSERT, UPDATE, or DELETE statement or an SQL statement that returns nothing, such as an SQL DDL statement.
- executeUpdate(String, int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeUpdate(String, int[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- executeUpdate(String, String[]) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
F
- findColumn(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Maps the given ResultSet column label to its ResultSet column index.
- first() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the first row in this ResultSet object.
- free() - Method in class org.monetdb.monetdbe.MonetBlob
-
This method frees the Blob object and releases the resources that it holds.
- free() - Method in class org.monetdb.monetdbe.MonetClob
-
This method frees the Clob object and releases the resources the resources that it holds.
G
- generatedKeyAlwaysReturned() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether a generated key will always be returned if the column name(s) or index(es) specified for the auto generated key column(s) are valid and the statement succeeds.
- getArray(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getArray(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getArray(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getArray(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getAsciiStream() - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves the CLOB value designated by this Clob object as an ascii stream.
- getAsciiStream(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getAsciiStream(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getAttributes(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the given attribute of the given type for a user-defined type (UDT) that is available in the given schema and catalog.
- getAutoCommit() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves the current auto-commit mode for this Connection object.
- getBestRowIdentifier(String, String, String, int, boolean) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of a table's optimal set of columns that uniquely identifies a row.
- getBigDecimal(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBigDecimal(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.BigDecimal in the Java programming language.
- getBigDecimal(int, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBigDecimal(int, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Deprecated.
- getBigDecimal(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBigDecimal(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBigDecimal(int), uses columnLabel instead.
- getBigDecimal(String, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Deprecated.
- getBigInteger(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.BigInteger in the Java programming language.
- getBigInteger(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBigInteger(int), uses columnLabel instead.
- getBinaryStream() - Method in class org.monetdb.monetdbe.MonetBlob
-
Retrieves the BLOB value designated by this Blob instance as a stream.
- getBinaryStream(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a stream of uninterpreted bytes.
- getBinaryStream(long, long) - Method in class org.monetdb.monetdbe.MonetBlob
-
Returns an InputStream object that contains a partial Blob value, starting with the byte specified by pos, which is length bytes in length.
- getBinaryStream(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBinaryStream(int), uses columnLabel instead.
- getBlob(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBlob(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a Blob object in the Java programming language.
- getBlob(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBlob(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBlob(int), uses columnLabel instead.
- getBoolean(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBoolean(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a boolean in the Java programming language.
- getBoolean(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBoolean(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBoolean(int), uses columnLabel instead.
- getByte(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getByte(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a byte in the Java programming language.
- getByte(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getByte(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getByte(int), uses columnLabel instead.
- getBytes(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBytes(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a byte array in the Java programming language.
- getBytes(long, int) - Method in class org.monetdb.monetdbe.MonetBlob
-
Retrieves all or part of the BLOB value that this Blob object represents, as an array of bytes.
- getBytes(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getBytes(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getBytes(int), uses columnLabel instead.
- getCatalog() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves this Connection object's current catalog name.
- getCatalogName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Gets the designated column's table's catalog name.
- getCatalogs() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get the catalog names available in this database.
- getCatalogSeparator() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the Catalog separator.
- getCatalogTerm() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the database vendor's preferred term for "catalog"? MonetDB doesn't support the SQL catalog naming concept.
- getCharacterStream() - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves the CLOB value designated by this Clob object as a java.io.Reader object (or as a stream of characters).
- getCharacterStream(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getCharacterStream(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.io.Reader object.
- getCharacterStream(long, long) - Method in class org.monetdb.monetdbe.MonetClob
-
Returns a Reader object that contains a partial Clob value, starting with the character specified by pos, which is length characters in length.
- getCharacterStream(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getCharacterStream(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getCharacterStream(int), uses columnLabel instead.
- getClassForMonetType(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between MonetDBe type (int) and Java classes (Class)
- getClassForSQLType(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between SQL types (int) and Java classes (Class)
- getClientInfo() - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns a list containing the name and current value of each client info property supported by the driver.
- getClientInfo(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns the value of the client info property specified by name.
- getClientInfoProperties() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a list of the client info properties that the driver supports.
- getClob(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getClob(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a Clob object in the Java programming language.
- getClob(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getClob(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getClob(int), uses columnLabel instead.
- getColumnClassName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Returns the fully-qualified name of the Java class whose instances are manufactured if the method ResultSet.getObject is called to retrieve a value from the column.
- getColumnCount() - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Returns the number of columns in this ResultSet object.
- getColumnDisplaySize(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates the designated column's normal maximum width in characters.
- getColumnLabel(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Gets the designated column's suggested title for use in printouts and displays.
- getColumnName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Get the designated column's name.
- getColumnPrivileges(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of the access rights for a table's columns.
- getColumns(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of table columns available in a catalog.
- getColumnsNumber() - Method in class org.monetdb.monetdbe.MonetResultSet
- getColumnType(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Retrieves the designated column's SQL type.
- getColumnTypeInt(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Retrieves the designated column's MonetDBe type name as an integer.
- getColumnTypeName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Retrieves the designated column's MonetDBe type name as a String.
- getConcurrency() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the concurrency mode of this ResultSet object.
- getConnection() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the connection that produced this metadata object.
- getConnection() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the Connection object that produced this Statement object.
- getCrossReference(String, String, String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of the foreign key columns in the foreign key table that reference the primary key columns of the primary key table.
- getCursorName() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the name of the SQL cursor used by this ResultSet object.
- getDatabaseMajorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the major version number of the underlying database.
- getDatabaseMinorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the minor version number of the underlying database.
- getDatabaseProductName() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the name of this database product - this should be MonetDB of course, so we return that explicitly.
- getDatabaseProductVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the version of this database product.
- getDatabaseVersion() - Static method in class org.monetdb.monetdbe.MonetDriver
-
Gets the database's full version number as a String.
- getDate(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDate(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
- getDate(int, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDate(int, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Date in the Java programming language.
- getDate(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDate(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getDate(int), uses columnLabel instead.
- getDate(String, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDate(String, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getDate(int,Calendar), uses columnLabel instead.
- getDbNative() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieve the C pointer to the database.
- getDefaultSQLTypeForClass(Class<?>) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between Java classes (Class) and SQL types (int)
- getDefaultTransactionIsolation() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the database's default transaction isolation level? We only see commited data, nonrepeatable reads and phantom reads can occur.
- getDouble(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDouble(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a double in the Java programming language.
- getDouble(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getDouble(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getDouble(int), uses columnLabel instead.
- getDriverMajorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is this JDBC driver's major version number?
- getDriverMinorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is this JDBC driver's minor version number?
- getDriverName() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the name of this JDBC driver?
- getDriverVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the version number of this JDBC driver as a String.
- getDriverVersion() - Static method in class org.monetdb.monetdbe.MonetDriver
-
Gets the driver's full version number as a String.
- getExportedKeys(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
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.monetdb.monetdbe.MonetDatabaseMetaData
-
Get all the "extra" characters that can be used in unquoted identifier names (those beyond a-zA-Z0-9 and _)
- getFetchDirection() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the fetch direction for this ResultSet object.
- getFetchDirection() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the direction for fetching rows from database tables that is the default for result sets generated from this Statement object.
- getFetchSize() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the fetch size for this ResultSet object.
- getFetchSize() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the number of result set rows that is the default fetch size for ResultSet objects generated from this Statement object.
- getFloat(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getFloat(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a float in the Java programming language.
- getFloat(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getFloat(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getFloat(int), uses columnLabel instead.
- getFunctionColumns(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the given catalog's system or user function parameters and return type.
- getFunctions(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the system and user functions available in the given catalog.
- getGeneratedKeys() - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported.
- getHoldability() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves the current holdability of ResultSet objects created using this Connection object.
- getHoldability() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the holdability of this ResultSet object
- getIdentifierQuoteString() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the string used to quote SQL identifiers? This returns a space if identifier quoting isn't supported.
- getImportedKeys(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
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.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the given table's indices and statistics.
- getInt(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getInt(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a int in the Java programming language.
- getInt(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getInt(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getInt(int), uses columnLabel instead.
- getJDBCMajorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the major JDBC version number for this driver.
- getJDBCMinorVersion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the minor JDBC version number for this driver.
- getJdbcURL() - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns the full JDBC Connection URL used for connecting to the database.
- getLargeMaxRows() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
- getLargeUpdateCount() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
- getLocalDate(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.time.LocalDate in the Java programming language.
- getLocalDateTime(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.time.LocalDateTime in the Java programming language.
- getLocalTime(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.time.LocalTime in the Java programming language.
- getLong(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getLong(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a long in the Java programming language.
- getLong(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getLong(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getLong(int), uses columnLabel instead.
- getMajorVersion() - Method in class org.monetdb.monetdbe.MonetDriver
-
Retrieves the driver's major version number.
- getMaxBinaryLiteralLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
How many hex characters can you have in an inline binary literal
- getMaxCatalogNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a catalog
- getMaxCharLiteralLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length for a character literal
- getMaxColumnNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Whats the limit on column name length.
- getMaxColumnsInGroupBy() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum number of columns in a "GROUP BY" clause?
- getMaxColumnsInIndex() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What's the maximum number of columns allowed in an index?
- getMaxColumnsInOrderBy() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What's the maximum number of columns in an "ORDER BY clause?
- getMaxColumnsInSelect() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum number of columns in a "SELECT" list?
- getMaxColumnsInTable() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum number of columns in a table? The theoretical max value of int column sys._columns.id is 2^31 -1 but this is for all columns of all tables in all schemas (including all data dictionary columns).
- getMaxConnections() - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns the maximum number of possible active connections.
- getMaxConnections() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the maximum number of concurrent connections to this database that are possible.
- getMaxCursorNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum cursor name length Actually we do not do named cursors, so I keep the value small as a precaution for maybe the future.
- getMaxFieldSize() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the maximum number of bytes that can be returned for character and binary column values in a ResultSet object produced by this Statement object.
- getMaxIndexLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the maximum number of bytes for an index, including all of the parts of the index.
- getMaxLogicalLobSize() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the maximum number of bytes this database allows for the logical size for a LOB.
- getMaxProcedureNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a procedure name
- getMaxRows() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the maximum number of rows that a ResultSet object produced by this Statement object can contain.
- getMaxRowSize() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a single row?
- getMaxSchemaNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the maximum number of characters that this database allows in a schema name.
- getMaxStatementLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a SQL statement?
- getMaxStatements() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
How many active statements can we have open at one time to this database? Basically, since each Statement downloads the results as the query is executed, we can have many.
- getMaxTableNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a table name
- getMaxTablesInSelect() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum number of tables that can be specified in a SELECT?
- getMaxUserNameLength() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the maximum length of a user name
- getMetaData() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves a DatabaseMetaData object that contains metadata about the database to which this Connection object represents a connection.
- getMetaData() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Retrieves a ResultSetMetaData object that contains information about the columns of the ResultSet object that will be returned when this PreparedStatement object is executed.
- getMetaData() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the number, types and properties of this ResultSet object's columns.
- getMinorVersion() - Method in class org.monetdb.monetdbe.MonetDriver
-
Gets the driver's minor version number.
- getMonetSize(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Returns the size of the MonetDBe type in bytes.
- getMonetTypeFromSQL(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between SQL types (int) and MonetDBe types (int)
- getMonetTypeIntFromSQLName(String) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between SQL types (String) and MonetDBe types (int)
- getMonetTypeString(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Returns the String name for the MonetDBe type (int)
- getMoreResults() - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature currently not supported.
- getMoreResults(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature currently not supported.
- getNames() - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Returns the column names of the ResultSet.
- getNCharacterStream(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNCharacterStream(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Same as getCharacterStream(int).
- getNCharacterStream(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNCharacterStream(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getNCharacterStream(int), uses columnLabel instead.
- getNClob(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNClob(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getNClob(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNClob(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getNetworkTimeout() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves the number of milliseconds the driver will wait for a database request to complete.
- getNString(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNString(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Same as getString(int).
- getNString(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getNString(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getNString(int), uses columnLabel instead.
- getNumericFunctions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- getObject(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Gets the value of the designated column in the current row as an Java object.
- getObject(int, Class<T>) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(int, Class<T>) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object and will convert from the SQL type of the column to the requested Java data type, if the conversion is supported.
- getObject(int, Map<String, Class<?>>) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(int, Map<String, Class<?>>) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as an Java object.
- getObject(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getObject(int), uses columnLabel instead.
- getObject(String, Class<T>) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(String, Class<T>) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getObject(int,Class), uses columnLabel instead.
- getObject(String, Map<String, Class<?>>) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getObject(String, Map<String, Class<?>>) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getObject(int,Map), uses columnLabel instead.
- getParameterClassName(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Returns the fully-qualified name of the Java class whose instances are manufactured if the method ResultSet.getObject is called to retrieve a value from the column.
- getParameterCount() - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the number of parameters in the PreparedStatement object for which this ParameterMetaData object contains information.
- getParameterMetaData() - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Retrieves the number, types and properties of this PreparedStatement object's parameters.
- getParameterMode(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the designated parameter's mode.
- getParameterType(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the designated parameter's SQL type.
- getParameterTypeName(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the designated parameter's MonetDBe type name as a String.
- getParentLogger() - Method in class org.monetdb.monetdbe.MonetDriver
-
Return the parent Logger of all the Loggers used by this data source (not supported).
- getPrecision(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the designated parameter's specified column size.
- getPrecision(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Get the designated column's specified column size.
- getPrecision(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Retrieves the maximum column size for a given SQL type.
- getPrimaryKeys(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of a table's primary key columns.
- getProcedureColumns(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of a catalog's stored procedure parameters and result columns.
- getProcedures(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of stored procedures available in a catalog
- getProcedureTerm() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the database vendor's preferred term for "procedure"?
- getPropertyInfo(String, Properties) - Method in class org.monetdb.monetdbe.MonetDriver
-
Gets information about the possible properties for this driver.
- getPseudoColumns(String, String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the pseudo or hidden columns available in a given table within the specified catalog and schema.
- getQueryTimeout() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the number of seconds the driver will wait for a Statement object to execute.
- getRef(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getRef(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getRef(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getRef(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getResultSet() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the current result as a ResultSet object.
- getResultSetConcurrency() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the result set concurrency for ResultSet objects generated by this Statement object.
- getResultSetHoldability() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves the default holdability of this
ResultSetobject. - getResultSetHoldability() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the result set holdability for ResultSet objects generated by this Statement object.
- getResultSetType() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the result set type for ResultSet objects generated by this Statement object.
- getRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the current row number.
- getRowId(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getRowId(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getRowId(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getRowId(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getRowIdLifetime() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Indicates whether or not this data source supports the SQL ROWID type, and if so the lifetime for which a RowId object remains valid.
- getRowsNumber() - Method in class org.monetdb.monetdbe.MonetResultSet
- getScale(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves the designated parameter's number of digits to right of the decimal point.
- getScale(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Gets the designated column's number of digits to right of the decimal point.
- getScaleJDBC() - Method in class org.monetdb.monetdbe.MonetColumn
-
Translates MonetDBe's internal scale format into Java's MathContext scale format.
- getSchema() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves this Connection object's current schema name.
- getSchemaName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Get the designated column's table's schema.
- getSchemas() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get the schema names available in this database.
- getSchemas(String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get the schema names available in this database.
- getSchemaTerm() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the database vendor's preferred term for "schema"? MonetDB uses the term "schema".
- getSearchStringEscape() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
This is the string that can be used to escape '_' and '%' in a search string pattern style catalog search parameters
- getShort(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getShort(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a short in the Java programming language.
- getShort(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getShort(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getShort(int), uses columnLabel instead.
- getSQLIntFromSQLName(String) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Returns the SQL type int from a SQL type name (String)
- getSQLKeywords() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a comma separated list of all a database's SQL keywords that are NOT also SQL:2003 keywords.
- getSQLStateType() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Indicates whether the SQLSTATEs returned by
SQLException.getSQLStateis X/Open (now known as Open Group) SQL CLI or SQL:2003. - getSQLTypeFromMonet(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between MonetDBe types (int) and SQL types (int)
- getSQLTypeNameFromMonet(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Conversion between MonetDBe types (int) and SQL types (String)
- getSQLXML(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getSQLXML(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getSQLXML(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getSQLXML(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getStatement() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the Statement object that produced this ResultSet object.
- getString(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getString(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a String in the Java programming language.
- getString(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getString(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getString(int), uses columnLabel instead.
- getStringFunctions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- getSubString(long, int) - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves a copy of the specified substring in the CLOB value designated by this Clob object.
- getSuperTables(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the table hierarchies defined in a particular schema in this database.
- getSuperTypes(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the user-defined type (UDT) hierarchies defined in a particular schema in this database.
- getSystemFunctions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- getTableName(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Gets the designated column's table name.
- getTablePrivileges(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of the access rights for each table available in a catalog.
- getTables(String, String, String, String[]) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the tables available in the given catalog.
- getTableTypes() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get the table types available in this database.
- getTime(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTime(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time in the Java programming language.
- getTime(int, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTime(int, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Time in the Java programming language.
- getTime(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTime(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getTime(int), uses columnLabel instead.
- getTime(String, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTime(String, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getTime(int,Calendar), uses columnLabel instead.
- getTimeDateFunctions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- getTimestamp(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTimestamp(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp in the Java programming language.
- getTimestamp(int, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTimestamp(int, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.sql.Timestamp in the Java programming language.
- getTimestamp(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTimestamp(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getTimestamp(int), uses columnLabel instead.
- getTimestamp(String, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getTimestamp(String, Calendar) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getTimestamp(int,Calendar), uses columnLabel instead.
- getTransactionIsolation() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves this Connection object's current transaction isolation level.
- getType() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the type of this ResultSet object.
- getTypeInfo() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Get a description of all the SQL data types supported by this database.
- getTypeMap() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves the Map object associated with this Connection object.
- getUDTs(String, String, String, int[]) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves a description of the user-defined types (UDTs) defined in a particular schema.
- getUnicodeStream(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getUnicodeStream(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- getUpdateCount() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the current result as an update count; if the result is a ResultSet object or there are no more results, -1 is returned.
- getURL() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is the URL for this database?
- getURL(int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getURL(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the value of the designated column in the current row of this ResultSet object as a java.net.URL object in the Java programming language.
- getURL(String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- getURL(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Similar to getURL(int), uses columnLabel instead.
- getUserName() - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns the full JDBC Connection URL used for connecting to the database.
- getUserName() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
What is our user name as known to the database?
- getVersionColumns(String, String, String) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
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.monetdb.monetdbe.MonetConnection
-
Retrieves the first warning reported by calls on this Connection object.
- getWarnings() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves the first warning reported by calls on this ResultSet object.
- getWarnings() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves the first warning reported by calls on this Statement object.
I
- insertRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- insertsAreDetected(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- isAfterLast() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves whether the cursor is after the last row in this ResultSet object.
- isAutoIncrement(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether the designated column is automatically numbered.
- isBeforeFirst() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves whether the cursor is before the first row in this ResultSet object.
- isCaseSensitive(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether a column's case matters.
- isCatalogAtStart() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does a catalog appear at the start of a qualified table name? (Otherwise it appears at the end).
- isClosed() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves whether this Connection object has been closed.
- isClosed() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves whether this ResultSet object has been closed.
- isClosed() - Method in class org.monetdb.monetdbe.MonetStatement
-
Retrieves whether this Statement object has been closed.
- isCloseOnCompletion() - Method in class org.monetdb.monetdbe.MonetStatement
-
Returns a value indicating whether this Statement will be closed when all its dependent result sets are closed.
- isCurrency(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether the designated column is a cash value.
- isDefinitelyWritable(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether a write on the designated column will definitely succeed.
- isFirst() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves whether the cursor is on the first row of this ResultSet object.
- isLast() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Retrieves whether the cursor is on the last row of this ResultSet object.
- isNullable(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves whether null values are allowed in the designated parameter.
- isNullable(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates the nullability of values in the designated column.
- isPoolable() - Method in class org.monetdb.monetdbe.MonetStatement
-
Returns a value indicating whether the Statement is poolable or not.
- isReadOnly() - Method in class org.monetdb.monetdbe.MonetConnection
-
Retrieves whether this Connection object is in read-only mode.
- isReadOnly() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is the database in read-only mode?
- isReadOnly(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether the designated column is definitely not writable.
- isSearchable(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether the designated column can be used in a where clause.
- isSigned(int) - Method in class org.monetdb.monetdbe.MonetParameterMetaData
-
Retrieves whether values for the designated parameter can be signed numbers.
- isSigned(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether values in the designated column are signed numbers.
- isSigned(int) - Static method in class org.monetdb.monetdbe.MonetTypes
-
Returns if the SQL type is signed.
- isValid(int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Returns true if the connection has not been closed and is still valid.
- isWrapperFor(Class<?>) - Method in class org.monetdb.monetdbe.MonetWrapper
-
Returns true if this either implements the interface argument or is directly or indirectly a wrapper for an object that does.
- isWritable(int) - Method in class org.monetdb.monetdbe.MonetResultSetMetaData
-
Indicates whether it is possible for a write on the designated column to succeed.
J
- jdbcCompliant() - Method in class org.monetdb.monetdbe.MonetDriver
-
Reports whether this driver is a genuine JDBC Compliant™ driver.
L
- largeUpdateCount - Variable in class org.monetdb.monetdbe.MonetStatement
-
Current updateCount (number of affected rows) for executeLarge methods
- last() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the last row in this ResultSet object.
- length() - Method in class org.monetdb.monetdbe.MonetBlob
-
Returns the number of bytes in the BLOB value designated by this Blob object.
- length() - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves the number of characters in the CLOB value designated by this Clob object.
- locatorsUpdateCopy() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Indicates whether updates made to a LOB are made on a copy or directly to the LOB.
M
- MonetBlob - Class in org.monetdb.monetdbe
-
The MonetBlob class implements the
Blobinterface. - MonetBlob(byte[]) - Constructor for class org.monetdb.monetdbe.MonetBlob
- MonetBlob(String) - Constructor for class org.monetdb.monetdbe.MonetBlob
- MonetCallableStatement - Class in org.monetdb.monetdbe
-
A
CallableStatementsuitable for the MonetDB database. - MonetClob - Class in org.monetdb.monetdbe
-
The MonetClob class implements the
Clobinterface. - MonetClob(String) - Constructor for class org.monetdb.monetdbe.MonetClob
- MonetColumn - Class in org.monetdb.monetdbe
-
Java class representation of a result MonetDB column.
- MonetColumn(String, int, Object[]) - Constructor for class org.monetdb.monetdbe.MonetColumn
-
Constructor for variable length data types (called from monetdbe_result_fetch_all)
- MonetColumn(String, int, ByteBuffer, double) - Constructor for class org.monetdb.monetdbe.MonetColumn
-
Constructor for constant length data types (called from monetdbe_result_fetch_all)
- MonetConnection - Class in org.monetdb.monetdbe
-
A
Connectionsuitable for the MonetDB database. - MonetDatabaseMetaData - Class in org.monetdb.monetdbe
-
A DatabaseMetaData object suitable for the MonetDB embedded database.
- MonetDatabaseMetaData(MonetConnection) - Constructor for class org.monetdb.monetdbe.MonetDatabaseMetaData
- monetdbe_bind_blob(ByteBuffer, int, byte[], long) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds blob parameter to prepared statement.
- monetdbe_bind_bool(ByteBuffer, int, boolean) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds boolean parameter to prepared statement.
- monetdbe_bind_byte(ByteBuffer, int, byte) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds byte parameter to prepared statement.
- monetdbe_bind_date(ByteBuffer, int, int, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds date parameter to prepared statement.
- monetdbe_bind_decimal(ByteBuffer, Object, int, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds decimal parameter to prepared statement.
- monetdbe_bind_double(ByteBuffer, int, double) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds double parameter to prepared statement.
- monetdbe_bind_float(ByteBuffer, int, float) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds float parameter to prepared statement.
- monetdbe_bind_hugeint(ByteBuffer, int, BigInteger) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds big integer parameter to prepared statement.
- monetdbe_bind_int(ByteBuffer, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds integer parameter to prepared statement.
- monetdbe_bind_long(ByteBuffer, int, long) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds long parameter to prepared statement.
- monetdbe_bind_null(ByteBuffer, int, ByteBuffer, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds a null value of any type to prepared statement.
- monetdbe_bind_short(ByteBuffer, int, short) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds short parameter to prepared statement.
- monetdbe_bind_string(ByteBuffer, int, String) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds string parameter to prepared statement.
- monetdbe_bind_time(ByteBuffer, int, int, int, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds time parameter to prepared statement.
- monetdbe_bind_timestamp(ByteBuffer, int, int, int, int, int, int, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Binds timestamp parameter to prepared statement.
- monetdbe_cleanup_statement(ByteBuffer, ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
-
Cleans up and closes a previously prepared statement.
- monetdbe_clear_bindings(ByteBuffer, ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
- monetdbe_close(ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
-
Close the database connection.
- monetdbe_error(ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
-
Returns latest error message from the database.
- monetdbe_execute(ByteBuffer, MonetPreparedStatement, boolean, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Executes prepared statement (which was previously prepared and had its parameters bound) and returns result set or update count, similarly to monetdbe_query function.
- monetdbe_get_autocommit(ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
-
Gets the current auto-commit value (either true or false).
- monetdbe_open(String, MonetConnection) - Static method in class org.monetdb.monetdbe.MonetNative
-
Open connection to memory or local directory database with default options.
- monetdbe_open(String, MonetConnection, int, int, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Open connection to memory or local directory database.
- monetdbe_open(String, MonetConnection, int, int, int, int, String, int, String, String, String) - Static method in class org.monetdb.monetdbe.MonetNative
-
Open connection to remote connection database.
- monetdbe_prepare(ByteBuffer, String, MonetPreparedStatement) - Static method in class org.monetdb.monetdbe.MonetNative
-
Prepares a reusable statement with configurable parameters.
- monetdbe_query(ByteBuffer, String, MonetStatement, boolean, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Executes an SQL statement and returns either one result set for DQL queries, an update count for DML queries or Statement.SUCCESS_NO_INFO (-2) for DDL queries.
- monetdbe_result_cleanup(ByteBuffer, ByteBuffer) - Static method in class org.monetdb.monetdbe.MonetNative
-
Cleans up and closes a result set.
- monetdbe_result_fetch_all(ByteBuffer, int, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Retrieve result from monetdbe_result pointer to MonetColumn, the Java representation of the result columns.
- monetdbe_set_autocommit(ByteBuffer, int) - Static method in class org.monetdb.monetdbe.MonetNative
-
Sets auto-commit mode.
- monetdbeTypes - Variable in class org.monetdb.monetdbe.MonetPreparedStatement
-
Array of types of bind-able parameters
- MonetDriver - Class in org.monetdb.monetdbe
-
A JDBC Driver for the embedded version of the MonetDB RDBMS.
- MonetDriver() - Constructor for class org.monetdb.monetdbe.MonetDriver
- MonetNative - Class in org.monetdb.monetdbe
-
Interface for C native methods in MonetDBe-Java.
- MonetNative() - Constructor for class org.monetdb.monetdbe.MonetNative
- MonetParameterMetaData - Class in org.monetdb.monetdbe
-
A
ParameterMetaDatasuitable for the MonetDB embedded database. - MonetPreparedStatement - Class in org.monetdb.monetdbe
-
A
PreparedStatementsuitable for the MonetDB embedded database. - MonetPreparedStatement(MonetConnection, String) - Constructor for class org.monetdb.monetdbe.MonetPreparedStatement
-
Prepared statement constructor, calls monetdbe_prepare() and super-class Statement constructor.
- MonetResultSet - Class in org.monetdb.monetdbe
-
A
ResultSetsuitable for the MonetDB embedded database. - MonetResultSetMetaData - Class in org.monetdb.monetdbe
-
A
ResultSetMetaDatasuitable for the MonetDB embedded database. - MonetStatement - Class in org.monetdb.monetdbe
-
A
Statementsuitable for the MonetDB embedded database. - MonetStatement(MonetConnection) - Constructor for class org.monetdb.monetdbe.MonetStatement
-
Default MonetStatement constructor.
- MonetStatement(MonetConnection, int) - Constructor for class org.monetdb.monetdbe.MonetStatement
-
MonetStatement constructor with query timeout value.
- MonetStatement(MonetConnection, int, int, int) - Constructor for class org.monetdb.monetdbe.MonetStatement
-
MonetStatement constructor with parameterized result set options.
- monetTypes - Variable in class org.monetdb.monetdbe.MonetParameterMetaData
-
The MonetDB types of the parameters as strings
- MonetTypes - Class in org.monetdb.monetdbe
-
Helper class to convert between MonetDBe types, JDBC SQL types and Java classes.
- MonetTypes() - Constructor for class org.monetdb.monetdbe.MonetTypes
- MonetWrapper - Class in org.monetdb.monetdbe
-
A Wrapper class which provide the ability to retrieve the delegate instance when the instance in question is in fact a proxy class.
- MonetWrapper() - Constructor for class org.monetdb.monetdbe.MonetWrapper
- moveToCurrentRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- moveToInsertRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
N
- nativeSQL(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Converts the given SQL statement into the system's native SQL grammar.
- next() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the previous row in this ResultSet object.
- nParams - Variable in class org.monetdb.monetdbe.MonetPreparedStatement
-
Number of bind-able parameters
- nullPlusNonNullIsNull() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are concatenations between NULL and non-NULL values NULL? A JDBC Compliant TM driver always returns true.
- nullsAreSortedAtEnd() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are NULL values sorted at the end regardless of sort order?
- nullsAreSortedAtStart() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are NULL values sorted at the start regardless of sort order?
- nullsAreSortedHigh() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether NULL values are sorted high.
- nullsAreSortedLow() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether NULL values are sorted low.
O
- org.monetdb.monetdbe - package org.monetdb.monetdbe
- othersDeletesAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- othersInsertsAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- othersUpdatesAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- ownDeletesAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- ownInsertsAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- ownUpdatesAreVisible(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
P
- parameterCount - Variable in class org.monetdb.monetdbe.MonetParameterMetaData
-
Number of parameters
- position(byte[], long) - Method in class org.monetdb.monetdbe.MonetBlob
-
Retrieves the byte position at which the specified byte array pattern begins within the BLOB value that this Blob object represents.
- position(String, long) - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves the character position at which the specified substring searchstr appears in the SQL CLOB value represented by this Clob object.
- position(Blob, long) - Method in class org.monetdb.monetdbe.MonetBlob
-
Retrieves the byte position in the BLOB value designated by this Blob object at which pattern begins.
- position(Clob, long) - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves the character position at which the specified Clob object searchstr appears in this Clob object.
- prepareCall(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a CallableStatement object for calling database stored procedures.
- prepareCall(String, int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
- prepareCall(String, int, int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a CallableStatement object that will generate ResultSet objects with the given type and concurrency.
- prepareStatement(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a PreparedStatement object for sending parameterized SQL statements to the database.
- prepareStatement(String, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Auto-generated keys are not yet currently supported.
- prepareStatement(String, int[]) - Method in class org.monetdb.monetdbe.MonetConnection
-
Auto-generated keys are not yet currently supported.
- prepareStatement(String, int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a PreparedStatement object that will generate ResultSet objects with the given type and concurrency.
- prepareStatement(String, int, int, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Creates a PreparedStatement object that will generate ResultSet objects with the given type, concurrency, and holdability.
- prepareStatement(String, String[]) - Method in class org.monetdb.monetdbe.MonetConnection
-
Auto-generated keys are not yet currently supported.
- previous() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor to the previous row in this ResultSet object.
R
- refreshRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- registerOutParameter(int, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(int, int, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(int, int, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(int, SQLType) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(int, SQLType, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(int, SQLType, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, int, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, int, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, SQLType) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, SQLType, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- registerOutParameter(String, SQLType, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- relative(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Moves the cursor a relative number of rows, either positive or negative.
- releaseSavepoint(Savepoint) - Method in class org.monetdb.monetdbe.MonetConnection
-
Savepoints are not yet currently supported.
- resultSet - Variable in class org.monetdb.monetdbe.MonetStatement
-
The current result set
- rollback() - Method in class org.monetdb.monetdbe.MonetConnection
-
Undoes all changes made in the current transaction and releases any database locks currently held by this Connection object.
- rollback(Savepoint) - Method in class org.monetdb.monetdbe.MonetConnection
-
Savepoints are not yet currently supported.
- rowDeleted() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- rowInserted() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- rowUpdated() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
S
- setArray(int, Array) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setAsciiStream(int, InputStream) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setAsciiStream(int, InputStream, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setAsciiStream(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setAsciiStream(long) - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves a stream to be used to write Ascii characters to the CLOB value that this Clob object represents, starting at position pos.
- setAsciiStream(String, InputStream) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setAsciiStream(String, InputStream, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setAsciiStream(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setAutoCommit(boolean) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets this connection's auto-commit mode to the given state.
- setBigDecimal(int, BigDecimal) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.math.BigDecimal value.
- setBigDecimal(String, BigDecimal) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBigInteger(int, BigInteger) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.math.BigInteger value.
- setBinaryStream(int, InputStream) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setBinaryStream(int, InputStream, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setBinaryStream(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setBinaryStream(long) - Method in class org.monetdb.monetdbe.MonetBlob
-
Retrieves a stream that can be used to write to the BLOB value that this Blob object represents.
- setBinaryStream(String, InputStream) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBinaryStream(String, InputStream, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBinaryStream(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBlob(int, InputStream) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setBlob(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setBlob(int, Blob) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.sql.Blob value.
- setBlob(String, InputStream) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBlob(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBlob(String, Blob) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBoolean(int, boolean) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java boolean value.
- setBoolean(String, boolean) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setByte(int, byte) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java byte value.
- setByte(String, byte) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setBytes(int, byte[]) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java byte[] value.
- setBytes(long, byte[]) - Method in class org.monetdb.monetdbe.MonetBlob
-
Writes the given array of bytes to the BLOB value that this Blob object represents, starting at position pos, and returns the number of bytes written.
- setBytes(long, byte[], int, int) - Method in class org.monetdb.monetdbe.MonetBlob
-
Writes all or part of the given byte array to the BLOB value that this Blob object represents and returns the number of bytes written.
- setBytes(String, byte[]) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setCatalog(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets the given catalog name in order to select a subspace of this Connection object's database in which to work.
- setCharacterStream(int, Reader) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setClob(int,Reader).
- setCharacterStream(int, Reader, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setClob(int,Reader,long).
- setCharacterStream(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setClob(int,Reader,long).
- setCharacterStream(long) - Method in class org.monetdb.monetdbe.MonetClob
-
Retrieves a stream to be used to write a stream of Unicode characters to the CLOB value that this Clob object represents, starting at position pos.
- setCharacterStream(String, Reader) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setCharacterStream(String, Reader, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setCharacterStream(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setClientInfo(String, String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets the value of the client info property specified by name to the value specified by value.
- setClientInfo(Properties) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets the value of the connection's client info properties.
- setClob(int, Reader) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
- setClob(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
- setClob(int, Clob) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.sql.Clob value.
- setClob(String, Reader) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setClob(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setClob(String, Clob) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setCursorName(String) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets the SQL cursor name to the given String, which will be used by subsequent Statement object execute methods.
- setDate(int, Date) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.sql.Date value.
- setDate(int, Date, Calendar) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given java.sql.Date value, using the given Calendar object.
- setDate(String, Date) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setDate(String, Date, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setDouble(int, double) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java double value.
- setDouble(String, double) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setEscapeProcessing(boolean) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets escape processing on or off.
- setFetchDirection(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Gives a hint as to the direction in which the rows in this ResultSet object will be processed.
- setFetchDirection(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Gives the driver a hint as to the direction in which rows will be processed in ResultSet objects created using this Statement object.
- setFetchSize(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Gives the driver a hint as to the number of rows that should be fetched from the database when more rows are needed for this ResultSet object.
- setFetchSize(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Gives the JDBC driver a hint as to the number of rows that should be fetched from the database when more rows are needed for ResultSet objects generated by this Statement.
- setFloat(int, float) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java float value.
- setFloat(String, float) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setHoldability(int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Changes the default holdability of ResultSet objects created using this Connection object to the given holdability.
- setInt(int, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java int value.
- setInt(String, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setLargeMaxRows(long) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
- setLong(int, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java long value.
- setLong(String, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setMaxFieldSize(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets the limit for the maximum number of bytes that can be returned for character and binary column values in a ResultSet object produced by this Statement object.
- setMaxRows(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets the limit for the maximum number of rows that any ResultSet object generated by this Statement object can contain to the given number.
- setNCharacterStream(int, Reader) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setClob(int,Reader).
- setNCharacterStream(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setClob(int,Reader,long).
- setNCharacterStream(String, Reader) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNCharacterStream(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNClob(int, Reader) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setNClob(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setNClob(int, NClob) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setNClob(String, Reader) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNClob(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNClob(String, NClob) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNetworkTimeout(Executor, int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets the maximum period a Connection or objects created from the Connection will wait for the database to reply to any one request.
- setNString(int, String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Similar to setString(int,String).
- setNString(String, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNull(int, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to SQL NULL.
- setNull(int, int, String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to SQL NULL.
- setNull(String, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setNull(String, int, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setObject(int, Object) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the value of the designated parameter using the given object.
- setObject(int, Object, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the value of the designated parameter with the given object.
- setObject(int, Object, int, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the value of the designated parameter with the given object.
- setObject(int, Object, SQLType) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the value of the designated parameter with the given object.
- setObject(int, Object, SQLType, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the value of the designated parameter with the given object.
- setObject(String, Object) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setObject(String, Object, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setObject(String, Object, int, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setObject(String, Object, SQLType) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setObject(String, Object, SQLType, int) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setPoolable(boolean) - Method in class org.monetdb.monetdbe.MonetStatement
-
Feature not supported
- setQueryTimeout(int) - Method in class org.monetdb.monetdbe.MonetStatement
-
Sets the number of seconds the driver will wait for a Statement object to execute to the given number of seconds.
- setReadOnly(boolean) - Method in class org.monetdb.monetdbe.MonetConnection
-
Puts this connection in read-only mode as a hint to the driver to enable database optimizations.
- setRef(int, Ref) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setRowId(int, RowId) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setRowId(String, RowId) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setSavepoint() - Method in class org.monetdb.monetdbe.MonetConnection
-
Savepoints are not yet currently supported.
- setSavepoint(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Savepoints are not yet currently supported.
- setSchema(String) - Method in class org.monetdb.monetdbe.MonetConnection
-
Sets the given schema name to access.
- setShort(int, short) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java short value.
- setShort(String, short) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setSQLXML(int, SQLXML) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setSQLXML(String, SQLXML) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setString(int, String) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java String value.
- setString(long, String) - Method in class org.monetdb.monetdbe.MonetClob
-
Writes the given Java String to the CLOB value that this Clob object designates at the position pos.
- setString(long, String, int, int) - Method in class org.monetdb.monetdbe.MonetClob
-
Writes len characters of str, starting at character offset, to the CLOB value that this Clob represents.
- setString(String, String) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setTime(int, Time) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.sql.Time value.
- setTime(int, Time, Calendar) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given java.sql.Time value, using the given Calendar object.
- setTime(String, Time) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setTime(String, Time, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setTimestamp(int, Timestamp) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.sql.Timestamp value.
- setTimestamp(int, Timestamp, Calendar) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given java.sql.Timestamp value, using the given Calendar object.
- setTimestamp(String, Timestamp) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setTimestamp(String, Timestamp, Calendar) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- setTransactionIsolation(int) - Method in class org.monetdb.monetdbe.MonetConnection
-
Attempts to change the transaction isolation level for this Connection object to the one given.
- setTypeMap(Map<String, Class<?>>) - Method in class org.monetdb.monetdbe.MonetConnection
-
Installs the given TypeMap object as the type map for this Connection object.
- setUnicodeStream(int, InputStream, int) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Feature not supported.
- setURL(int, URL) - Method in class org.monetdb.monetdbe.MonetPreparedStatement
-
Sets the designated parameter to the given Java java.net.URL value.
- setURL(String, URL) - Method in class org.monetdb.monetdbe.MonetCallableStatement
- sqlTypes - Variable in class org.monetdb.monetdbe.MonetParameterMetaData
-
The JDBC SQL types of the parameters
- statementNative - Variable in class org.monetdb.monetdbe.MonetPreparedStatement
-
The pointer to the C statement object
- storesLowerCaseIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in lower case?
- storesLowerCaseQuotedIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in lower case?
- storesMixedCaseIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in mixed case?
- storesMixedCaseQuotedIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in mixed case?
- storesUpperCaseIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case unquoted SQL identifiers as case insensitive and store them in upper case?
- storesUpperCaseQuotedIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case quoted SQL identifiers as case insensitive and store them in upper case?
- supportsAlterTableWithAddColumn() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is "ALTER TABLE" with an add column supported?
- supportsAlterTableWithDropColumn() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is "ALTER TABLE" with a drop column supported?
- supportsANSI92EntryLevelSQL() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the ANSI-92 entry level SQL grammar? All JDBC Compliant TM drivers must return true.
- supportsANSI92FullSQL() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the ANSI-92 full SQL grammar? Would be good if it was like that
- supportsANSI92IntermediateSQL() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the ANSI-92 intermediate level SQL grammar? probably not
- supportsBatchUpdates() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Indicates whether the driver supports batch updates.
- supportsCatalogsInDataManipulation() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a catalog name be used in a data manipulation statement?
- supportsCatalogsInIndexDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a catalog name be used in an index definition?
- supportsCatalogsInPrivilegeDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a catalog name be used in a privilege definition statement?
- supportsCatalogsInProcedureCalls() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a catalog name be used in a procedure call statement?
- supportsCatalogsInTableDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a catalog name be used in a table definition statement?
- supportsColumnAliasing() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is column aliasing supported?
- supportsConvert() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports the JDBC scalar function CONVERT for the conversion of one JDBC type to another.
- supportsConvert(int, int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports the JDBC scalar function CONVERT for conversions between the JDBC types fromType and toType.
- supportsCoreSQLGrammar() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the Core ODBC SQL grammar.
- supportsCorrelatedSubqueries() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are correlated subqueries supported? A JDBC Compliant TM driver always returns true.
- supportsDataDefinitionAndDataManipulationTransactions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are both data definition and data manipulation transactions supported? Supposedly that data definition is like CREATE or ALTER TABLE yes it is.
- supportsDataManipulationTransactionsOnly() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are only data manipulation statements within a transaction supported?
- supportsDifferentTableCorrelationNames() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
If table correlation names are supported, are they restricted to be different from the names of the tables?
- supportsExpressionsInOrderBy() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are expressions in "ORDER BY" lists supported? e.g.
- supportsExtendedSQLGrammar() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the Extended (Level 2) ODBC SQL grammar.
- supportsFullOuterJoins() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are full nested outer joins supported?
- supportsGetGeneratedKeys() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether auto-generated keys can be retrieved after a statement has been executed.
- supportsGroupBy() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is some form of "GROUP BY" clause supported?
- supportsGroupByBeyondSelect() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a "GROUP BY" clause add columns not in the SELECT provided it specifies all the columns in the SELECT? (MonetDB already supports the more difficult supportsGroupByUnrelated(), so this is a piece of cake)
- supportsGroupByUnrelated() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a "GROUP BY" clause use columns not in the SELECT?
- supportsIntegrityEnhancementFacility() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is the SQL Integrity Enhancement Facility supported? The SQL Integrity Enhancement facility offers additional tools for referential integrity, CHECK constraint clauses, and DEFAULT clauses.
- supportsLikeEscapeClause() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is the escape character in "LIKE" clauses supported? A JDBC Compliant TM driver always returns true.
- supportsLimitedOuterJoins() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is there limited support for outer joins?
- supportsMinimumSQLGrammar() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does this driver support the minimum ODBC SQL grammar.
- supportsMixedCaseIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case unquoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC Compliant TM driver always returns false.
- supportsMixedCaseQuotedIdentifiers() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database treat mixed case quoted SQL identifiers as case sensitive and as a result store them in mixed case? A JDBC Compliant TM driver always returns true.
- supportsMultipleOpenResults() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether it is possible to have multiple
ResultSetobjects returned from aCallableStatementobject simultaneously. - supportsMultipleResultSets() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are multiple ResultSets from a single execute supported?
- supportsMultipleTransactions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can we have multiple transactions open at once (on different connections?)
- supportsNamedParameters() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports named parameters to callable statements.
- supportsNonNullableColumns() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can columns be defined as non-nullable.
- supportsOpenCursorsAcrossCommit() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
ResultSet objects (cursors) are not closed upon explicit or implicit commit.
- supportsOpenCursorsAcrossRollback() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Same as above
- supportsOpenStatementsAcrossCommit() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can statements remain open across commits? They may, but this driver cannot guarentee that.
- supportsOpenStatementsAcrossRollback() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can statements remain open across rollbacks? They may, but this driver cannot guarentee that.
- supportsOrderByUnrelated() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can an "ORDER BY" clause use columns not in the SELECT? MonetDB differs from SQL03 => true
- supportsOuterJoins() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is some form of outer join supported?
- supportsPositionedDelete() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
MonetDB doesn't support positioned DELETEs I guess
- supportsPositionedUpdate() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is positioned UPDATE supported? (same as above)
- supportsRefCursors() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports REF CURSOR.
- supportsResultSetConcurrency(int, int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database support the concurrency type in combination with the given result set type?
- supportsResultSetHoldability(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports the given result set holdability.
- supportsResultSetType(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database support the given result set type?
- supportsSavepoints() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports savepoints.
- supportsSchemasInDataManipulation() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a schema name be used in a data manipulation statement?
- supportsSchemasInIndexDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a schema name be used in an index definition statement?
- supportsSchemasInPrivilegeDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a schema name be used in a privilege definition statement?
- supportsSchemasInProcedureCalls() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a schema name be used in a procedure call statement? Ohw probably, but I don't know of procedures in MonetDB
- supportsSchemasInTableDefinitions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Can a schema be used in a table definition statement?
- supportsSelectForUpdate() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is SELECT FOR UPDATE supported? My test resulted in a negative answer
- supportsStatementPooling() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports statement pooling.
- supportsStoredFunctionsUsingCallSyntax() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Retrieves whether this database supports invoking user-defined or vendor functions using the stored procedure escape syntax.
- supportsStoredProcedures() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are stored procedure calls using the stored procedure escape syntax supported?
- supportsSubqueriesInComparisons() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are subqueries in comparison expressions supported? A JDBC Compliant TM driver always returns true.
- supportsSubqueriesInExists() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are subqueries in 'exists' expressions supported? A JDBC Compliant TM driver always returns true.
- supportsSubqueriesInIns() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are subqueries in 'in' statements supported? A JDBC Compliant TM driver always returns true.
- supportsSubqueriesInQuantifieds() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are subqueries in quantified expressions supported? A JDBC Compliant TM driver always returns true.
- supportsTableCorrelationNames() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are table correlation names supported? A JDBC Compliant TM driver always returns true.
- supportsTransactionIsolationLevel(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database support the given transaction isolation level? We only support TRANSACTION_SERIALIZABLE as far as I know
- supportsTransactions() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Are transactions supported? If not, commit and rollback are noops and the isolation level is TRANSACTION_NONE.
- supportsUnion() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is SQL UNION supported? since 2004-03-20
- supportsUnionAll() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Is SQL UNION ALL supported? since 2004-03-20
T
- toString() - Method in class org.monetdb.monetdbe.MonetClob
-
Returns a String from this MonetClob buf.
- truncate(long) - Method in class org.monetdb.monetdbe.MonetBlob
-
Truncates the BLOB value that this Blob object represents to be len bytes in length.
- truncate(long) - Method in class org.monetdb.monetdbe.MonetClob
-
Truncates the CLOB value that this Clob designates to have a length of len characters.
- types - Variable in class org.monetdb.monetdbe.MonetParameterMetaData
-
The MonetDB types of the parameters as integers
U
- unwrap(Class<T>) - Method in class org.monetdb.monetdbe.MonetWrapper
-
Returns an object that implements the given interface to allow access to non-standard methods, or standard methods not exposed by the proxy.
- updateArray(int, Array) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateArray(String, Array) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(int, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(int, InputStream, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(String, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(String, InputStream, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateAsciiStream(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBigDecimal(int, BigDecimal) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBigDecimal(String, BigDecimal) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBinaryStream(int, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
- updateBinaryStream(int, InputStream, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBinaryStream(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBinaryStream(String, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBinaryStream(String, InputStream, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBinaryStream(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBlob(int, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBlob(int, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBlob(int, Blob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBlob(String, InputStream) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBlob(String, InputStream, long) - Method in class org.monetdb.monetdbe.MonetResultSet
- updateBlob(String, Blob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBoolean(int, boolean) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBoolean(String, boolean) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateByte(int, byte) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateByte(String, byte) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBytes(int, byte[]) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateBytes(String, byte[]) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(int, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(int, Reader, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(String, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(String, Reader, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCharacterStream(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(int, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(int, Clob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(String, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateClob(String, Clob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateCount - Variable in class org.monetdb.monetdbe.MonetStatement
-
Current updateCount (number of affected rows)
- updateDate(int, Date) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateDate(String, Date) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateDouble(int, double) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateDouble(String, double) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateFloat(int, float) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateFloat(String, float) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateInt(int, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateInt(String, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateLong(int, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateLong(String, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNCharacterStream(int, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNCharacterStream(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNCharacterStream(String, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNCharacterStream(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(int, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(int, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(int, NClob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(String, Reader) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(String, Reader, long) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNClob(String, NClob) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNString(int, String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNString(String, String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNull(int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateNull(String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(int, Object) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(int, Object, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(int, Object, SQLType) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(int, Object, SQLType, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(String, Object) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(String, Object, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(String, Object, SQLType) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateObject(String, Object, SQLType, int) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateRef(int, Ref) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateRef(String, Ref) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateRow() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateRowId(int, RowId) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateRowId(String, RowId) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updatesAreDetected(int) - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
- updateShort(int, short) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateShort(String, short) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateSQLXML(int, SQLXML) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateSQLXML(String, SQLXML) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateString(int, String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateString(String, String) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateTime(int, Time) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateTime(String, Time) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateTimestamp(int, Timestamp) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- updateTimestamp(String, Timestamp) - Method in class org.monetdb.monetdbe.MonetResultSet
-
Feature not supported.
- usesLocalFilePerTable() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database use a local file for each table?
- usesLocalFiles() - Method in class org.monetdb.monetdbe.MonetDatabaseMetaData
-
Does the database store tables in a local file? No, it stores them in files on the server.
W
- wasNull() - Method in class org.monetdb.monetdbe.MonetCallableStatement
- wasNull() - Method in class org.monetdb.monetdbe.MonetResultSet
-
Reports whether the last column read had a value of SQL NULL.
All Classes|All Packages