| Package | Description |
|---|---|
| com.mysql.cj.xdevapi |
Java classes for X DevAPI support.
|
| Modifier and Type | Class and Description |
|---|---|
class |
TableImpl
Table implementation |
| Modifier and Type | Method and Description |
|---|---|
Table |
SchemaImpl.getCollectionAsTable(java.lang.String collectionName) |
Table |
Schema.getCollectionAsTable(java.lang.String name)
Retrieve a reference to the named collection using the table API.
|
Table |
SchemaImpl.getTable(java.lang.String tableName) |
Table |
Schema.getTable(java.lang.String name)
Retrieve a reference to the named table.
|
Table |
SchemaImpl.getTable(java.lang.String tableName,
boolean requireExists) |
Table |
Schema.getTable(java.lang.String tableName,
boolean requireExists)
Retrieve a reference to the named table hinting that an exception should be thrown if the collection is not known to the server.
|
| Modifier and Type | Method and Description |
|---|---|
java.util.List<Table> |
SchemaImpl.getTables() |
java.util.List<Table> |
Schema.getTables()
Retrieve the set of tables existing in this schema.
|
java.util.List<Table> |
SchemaImpl.getTables(java.lang.String pattern) |
java.util.List<Table> |
Schema.getTables(java.lang.String pattern)
Retrieve the set of tables existing in this schema and matching the given pattern.
|