MySQL 9.3 Reference Manual Including MySQL NDB Cluster 9.3
The Schema
object represents a database
schema. You can obtain an instance of Schema
by calling the Session
object's
getSchema()
method;
you can also obtain a list of all available databases by calling
getSchemas()
.
Schema supports the methods listed here:
existsInDatabase()
: Returns
true
if the schema exists, otherwise
false
.
getTable(String
: Returns the
name
)Table
having the specified
name
.
getTables()
: Returns a a list of tables
(Table
objects) existing within this
Schema
.
getSession()
: Returns the
Session
object
corresponding to the current session.