Modifier and Type | Class and Description |
---|---|
class |
JDBCResultSet
Title: Dataspace Framework
|
Modifier and Type | Method and Description |
---|---|
ResultSet |
JDBCPreparedStatement.executeQuery()
Executes the SQL query in this
PreparedStatement object
and returns the ResultSet object generated by the query. |
ResultSet |
JDBCPreparedStatement.executeQuery(java.lang.String sql)
This method should always throw if called for a PreparedStatement or
CallableStatment.
|
ResultSet |
JDBCStatement.executeQuery(java.lang.String sql)
Executes the given SQL statement, which returns a single
ResultSet object. |
ResultSet |
JDBCDatabaseMetaData.getAttributes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
java.lang.String attributeNamePattern)
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.
|
ResultSet |
JDBCDatabaseMetaData.getBestRowIdentifier(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
int scope,
boolean nullable)
Retrieves a description of a table's optimal set of columns that
uniquely identifies a row.
|
ResultSet |
JDBCDatabaseMetaData.getCatalogs()
Retrieves the catalog names available in this database.
|
ResultSet |
JDBCDatabaseMetaData.getClientInfoProperties()
Retrieves a list of the client info properties
that the driver supports.
|
ResultSet |
JDBCDatabaseMetaData.getColumnPrivileges(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
java.lang.String columnNamePattern)
Retrieves a description of the access rights for a table's columns.
|
ResultSet |
JDBCDatabaseMetaData.getColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of table columns available in
the specified catalog.
|
ResultSet |
JDBCDatabaseMetaData.getCrossReference(java.lang.String parentCatalog,
java.lang.String parentSchema,
java.lang.String parentTable,
java.lang.String foreignCatalog,
java.lang.String foreignSchema,
java.lang.String foreignTable)
(JDBC4 clarification:)
Retrieves a description of the foreign key columns in the given foreign key
table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table).
|
ResultSet |
JDBCDatabaseMetaData.getExportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the foreign key columns that reference the
given table's primary key columns (the foreign keys exported by a
table).
|
ResultSet |
JDBCDatabaseMetaData.getFunctionColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's system or user
function parameters and return type.
|
ResultSet |
JDBCDatabaseMetaData.getFunctions(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern)
Retrieves a description of the user functions available in the given
catalog.
|
ResultSet |
JDBCPreparedStatement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
ResultSet |
JDBCStatement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
ResultSet |
JDBCDatabaseMetaData.getImportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the primary key columns that are
referenced by the given table's foreign key columns (the primary keys
imported by a table).
|
ResultSet |
JDBCDatabaseMetaData.getIndexInfo(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
boolean unique,
boolean approximate)
Retrieves a description of the given table's indices and statistics.
|
ResultSet |
JDBCDatabaseMetaData.getPrimaryKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the given table's primary key columns.
|
ResultSet |
JDBCDatabaseMetaData.getProcedureColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's stored procedure parameter
and result columns.
|
ResultSet |
JDBCDatabaseMetaData.getProcedures(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern)
Retrieves a description of the stored procedures available in the given
catalog.
|
ResultSet |
JDBCDatabaseMetaData.getPseudoColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the pseudo or hidden columns available
in a given table within the specified catalog and schema.
|
ResultSet |
JDBCArrayBasic.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
JDBCPreparedStatement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
JDBCStatement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
JDBCArray.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
JDBCArrayBasic.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArray.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArrayBasic.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArray.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the sub-array that
starts at index
index and contains up to
count successive elements. |
ResultSet |
JDBCArrayBasic.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
ResultSet |
JDBCArray.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
ResultSet |
JDBCDatabaseMetaData.getSchemas()
Retrieves the schema names available in this database.
|
ResultSet |
JDBCDatabaseMetaData.getSchemas(java.lang.String catalog,
java.lang.String schemaPattern)
Retrieves the schema names available in this database.
|
ResultSet |
JDBCDatabaseMetaData.getSuperTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the table hierarchies defined in a particular
schema in this database.
|
ResultSet |
JDBCDatabaseMetaData.getSuperTypes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern)
Retrieves a description of the user-defined type (UDT) hierarchies defined in a
particular schema in this database.
|
ResultSet |
JDBCDatabaseMetaData.getTablePrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the access rights for each table available
in a catalog.
|
ResultSet |
JDBCDatabaseMetaData.getTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String[] types)
Retrieves a description of the tables available in the given catalog.
|
ResultSet |
JDBCDatabaseMetaData.getTableTypes()
Retrieves the table types available in this database.
|
ResultSet |
JDBCDatabaseMetaData.getTypeInfo()
Retrieves a description of all the (JDBC4 clarification:) data types supported by
this database.
|
ResultSet |
JDBCDatabaseMetaData.getUDTs(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
int[] types)
Retrieves a description of the user-defined types (UDTs) defined
in a particular schema.
|
ResultSet |
JDBCDatabaseMetaData.getVersionColumns(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of a table's columns that are automatically
updated when any value in a row is updated.
|
Modifier and Type | Method and Description |
---|---|
void |
TableFactory.initFromResultSet(ResultSet resultSet) |
Modifier and Type | Method and Description |
---|---|
ResultSet |
DatabasePreparedConnectionStatement.executeQuery() |
ResultSet |
DatabaseConnectionStatement.executeQuery(java.lang.String sql) |
ResultSet |
DatabaseConnectionStatement.getGeneratedKeys() |
ResultSet |
DatabaseConnectionStatement.getResultSet() |
Modifier and Type | Method and Description |
---|---|
void |
RowEvent.init(ResultSet resultSet)
Initializes the SDO row stored in the event by the specified result set.
|
void |
RowArrayEvent.init(ResultSet resultSet)
Initializes a new Row Array Event based on
ResultSet meta data. |
void |
RowSetEvent.init(ResultSet resultSet)
Initializes the
SDORowSet stored in the event by the specified result set. |
Modifier and Type | Interface and Description |
---|---|
interface |
RowSetInterface
Title: Structured Data Objects
|
Modifier and Type | Class and Description |
---|---|
class |
RowSet
Title: Structured Data Objects
|
class |
RowSetProxy
Title: Structured Data Objects
|
Modifier and Type | Method and Description |
---|---|
ResultSet |
ArrayImpl.getResultSet() |
ResultSet |
ArrayImpl.getResultSet(long index,
int count) |
ResultSet |
ArrayImpl.getResultSet(long index,
int count,
java.util.Map map) |
ResultSet |
ArrayImpl.getResultSet(java.util.Map map) |
Modifier and Type | Method and Description |
---|---|
static RowMetaData |
RowSet.createMetaData(ResultSet resultSet) |
static RowMetaData |
RowSetFactory.createMetaData(ResultSet resultSet) |
RowSet |
RowSetFactory.createRowSet(ResultSet resultSet) |
void |
RowArray.init(ResultSet set)
Initializes a new Row Array based on
ResultSet meta data. |
Constructor and Description |
---|
Row(ResultSet result)
Creates new row from the ResultSet.
|
RowMetaData(ResultSet rs)
Initializes row meta data from JDBC ResultSet.
|
Modifier and Type | Method and Description |
---|---|
static SQLColumnSet |
SQLQueryFactory.createColumnSet(ResultSet resultSet)
Creates
SQLColumnSet from provided ResultSet . |
Modifier and Type | Class and Description |
---|---|
class |
com.streamscape.sef.dispatcher.AbstractRowSetProxy
Title: Structured Data Objects
|
Modifier and Type | Method and Description |
---|---|
ResultSet |
PreparedStatement.executeQuery()
Executes the SQL query in this
PreparedStatement object
and returns the ResultSet object generated by the query. |
ResultSet |
Statement.executeQuery(java.lang.String sql)
Executes the given SQL statement, which returns a single
ResultSet object. |
ResultSet |
DatabaseMetaData.getAttributes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
java.lang.String attributeNamePattern)
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.
|
ResultSet |
DatabaseMetaData.getBestRowIdentifier(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
int scope,
boolean nullable)
Retrieves a description of a table's optimal set of columns that
uniquely identifies a row.
|
ResultSet |
DatabaseMetaData.getCatalogs()
Retrieves the catalog names available in this database.
|
ResultSet |
DatabaseMetaData.getClientInfoProperties()
Retrieves a list of the client info properties
that the driver supports.
|
ResultSet |
DatabaseMetaData.getColumnPrivileges(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
java.lang.String columnNamePattern)
Retrieves a description of the access rights for a table's columns.
|
ResultSet |
DatabaseMetaData.getColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of table columns available in
the specified catalog.
|
ResultSet |
DatabaseMetaData.getCrossReference(java.lang.String parentCatalog,
java.lang.String parentSchema,
java.lang.String parentTable,
java.lang.String foreignCatalog,
java.lang.String foreignSchema,
java.lang.String foreignTable)
Retrieves a description of the foreign key columns in the given foreign key
table that reference the primary key or the columns representing a unique constraint of the parent table (could be the same or a different table).
|
ResultSet |
DatabaseMetaData.getExportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the foreign key columns that reference the
given table's primary key columns (the foreign keys exported by a
table).
|
ResultSet |
DatabaseMetaData.getFunctionColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's system or user
function parameters and return type.
|
ResultSet |
DatabaseMetaData.getFunctions(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String functionNamePattern)
Retrieves a description of the system and user functions available
in the given catalog.
|
ResultSet |
Statement.getGeneratedKeys()
Retrieves any auto-generated keys created as a result of executing this
Statement object. |
ResultSet |
DatabaseMetaData.getImportedKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the primary key columns that are
referenced by the given table's foreign key columns (the primary keys
imported by a table).
|
ResultSet |
DatabaseMetaData.getIndexInfo(java.lang.String catalog,
java.lang.String schema,
java.lang.String table,
boolean unique,
boolean approximate)
Retrieves a description of the given table's indices and statistics.
|
ResultSet |
DatabaseMetaData.getPrimaryKeys(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of the given table's primary key columns.
|
ResultSet |
DatabaseMetaData.getProcedureColumns(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern,
java.lang.String columnNamePattern)
Retrieves a description of the given catalog's stored procedure parameter
and result columns.
|
ResultSet |
DatabaseMetaData.getProcedures(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String procedureNamePattern)
Retrieves a description of the stored procedures available in the given
catalog.
|
ResultSet |
Statement.getResultSet()
Retrieves the current result as a
ResultSet object. |
ResultSet |
Array.getResultSet()
Retrieves a result set that contains the elements of the SQL
ARRAY value
designated by this Array object. |
ResultSet |
Array.getResultSet(long index,
int count)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
Array.getResultSet(long index,
int count,
java.util.Map map)
Retrieves a result set holding the elements of the subarray that
starts at index
index and contains up to
count successive elements. |
ResultSet |
Array.getResultSet(java.util.Map map)
Retrieves a result set that contains the elements of the SQL
ARRAY value designated by this Array object. |
ResultSet |
DatabaseMetaData.getSchemas()
Retrieves the schema names available in this database.
|
ResultSet |
DatabaseMetaData.getSchemas(java.lang.String catalog,
java.lang.String schemaPattern)
Retrieves the schema names available in this database.
|
ResultSet |
DatabaseMetaData.getSuperTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the table hierarchies defined in a particular
schema in this database.
|
ResultSet |
DatabaseMetaData.getSuperTypes(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern)
Retrieves a description of the user-defined type (UDT) hierarchies defined in a
particular schema in this database.
|
ResultSet |
DatabaseMetaData.getTablePrivileges(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern)
Retrieves a description of the access rights for each table available
in a catalog.
|
ResultSet |
DatabaseMetaData.getTables(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String tableNamePattern,
java.lang.String[] types)
Retrieves a description of the tables available in the given catalog.
|
ResultSet |
DatabaseMetaData.getTableTypes()
Retrieves the table types available in this database.
|
ResultSet |
DatabaseMetaData.getTypeInfo()
Retrieves a description of all the data types supported by
this database.
|
ResultSet |
DatabaseMetaData.getUDTs(java.lang.String catalog,
java.lang.String schemaPattern,
java.lang.String typeNamePattern,
int[] types)
Retrieves a description of the user-defined types (UDTs) defined
in a particular schema.
|
ResultSet |
DatabaseMetaData.getVersionColumns(java.lang.String catalog,
java.lang.String schema,
java.lang.String table)
Retrieves a description of a table's columns that are automatically
updated when any value in a row is updated.
|
Copyright © 2015-2024 StreamScape Technologies. All rights reserved.