Interface | Description |
---|---|
DbEngine |
Information about database-specific options that are not covered by the
Hibernate
Dialect objects. |
Class | Description |
---|---|
AbstractDbEngine |
An abstract superclass with default implementations for most
DbEngine
methods. |
DefaultDbEngine |
A default DbEngine that is selected if no other can be found.
|
EngineFactory |
Creates
DbEngine objects based on the Hibernate dialect. |
MySQLEngine |
Database engine for My SQL.
|
PostgresDbEngine |
Database engine for Postgres.
|
TableInfo |
Holds minimal but useful information about a table in the database.
|
TableInfo.ColumnInfo |
Holds information about a single column in a table.
|
TableInfo.ForeignKeyInfo |
Holds information about a foreign key of a table.
|
TableInfo.IndexInfo |
Holds information about an index in a table.
|
TableInfo.PrimaryKeyInfo |
Holds information about the primary key of a table.
|