|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Table | |
|---|---|
| com.metamatrix.common.jdbc | |
| com.metamatrix.common.jdbc.db | |
| com.metamatrix.common.jdbc.metadata | |
| Uses of Table in com.metamatrix.common.jdbc |
|---|
| Methods in com.metamatrix.common.jdbc with parameters of type Table | |
|---|---|
java.lang.String |
JDBCPlatform.createDeleteStatement(Table table)
Obtain the statement that may be used to delete records from a table with the specified metadata. |
java.lang.String |
JDBCPlatform.createDeleteStatement(Table table,
Column[] whereColumns,
java.lang.String tablePrefix)
|
java.lang.String |
JDBCPlatform.createDeleteStatement(Table table,
java.lang.String tablePrefix)
|
java.lang.String |
JDBCPlatform.createInsertStatement(Table tableMetadata)
This will create an insert statement that can be used to insert rows using a PreparedStatement. |
java.lang.String |
JDBCPlatform.createInsertStatement(Table tableMetadata,
java.lang.String tablePrefix)
|
java.lang.String |
JDBCPlatform.createInsertStatement(Table tableMetadata,
java.lang.String[] values)
This will create an insert statement that will contain the actual values to be inserted into the table. |
java.lang.String |
JDBCPlatform.createSelectStatement(Table tableMetadata)
This will create an select statement that can be used to select rows. |
java.lang.String |
JDBCPlatform.createSelectStatement(Table tableMetadata,
java.lang.String tablePrefix)
|
java.lang.String |
JDBCPlatform.createSelectStatement(Table tableMetadata,
java.lang.String tablePrefix,
Column[] whereColumns)
Create the select SQL string based on the table metadata. |
java.lang.String |
JDBCPlatform.createUpdateStatement(Table tableMetadata)
Obtain the statement that can be used to update records in a table using a PreparedStatement. |
java.lang.String |
JDBCPlatform.createUpdateStatement(Table tableMetadata,
java.lang.String[] values)
Obtain the statement which will contain the actual data values to update records in a table. |
| Uses of Table in com.metamatrix.common.jdbc.db |
|---|
| Methods in com.metamatrix.common.jdbc.db with parameters of type Table | |
|---|---|
java.lang.String |
OraclePlatform.createInsertStatement(Table tableMetadata)
This will create an insert statement that can be used to insert rows using a PreparedStatement. |
| Uses of Table in com.metamatrix.common.jdbc.metadata |
|---|
| Methods in com.metamatrix.common.jdbc.metadata that return Table | |
|---|---|
Table |
Schema.lookupTable(java.lang.String tableName)
|
Table |
Catalog.lookupTable(java.lang.String tableName)
|
| Methods in com.metamatrix.common.jdbc.metadata with parameters of type Table | |
|---|---|
void |
Schema.add(Table object)
|
void |
Catalog.add(Table object)
|
boolean |
Schema.contains(Table object)
|
boolean |
Catalog.contains(Table object)
|
boolean |
Schema.remove(Table object)
|
boolean |
Catalog.remove(Table object)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||