DbTableOrView
Contains meta data information about a table or a view.
This class is used by the H2 Console.
| Methods |
| DbColumn[] |
getColumns()
|
| DbColumn[] |
getColumns()
Returns:
The column list.
|
| String |
getName()
|
| String |
getName()
Returns:
The table name.
|
| String |
getQuotedName()
|
| String |
getQuotedName()
Returns:
The quoted table name.
|
| DbSchema |
getSchema()
|
| DbSchema |
getSchema()
Returns:
The schema this table belongs to.
|
| boolean |
isView()
|
| boolean |
isView()
Returns:
True if this represents a view.
|
| void |
readColumns(DatabaseMetaData meta)
Read the column for this table from the database meta data.
|
| void |
readColumns(DatabaseMetaData meta) throws SQLException
Read the column for this table from the database meta data.
Parameters:
meta - the database meta data
|