Package org.datanucleus.store.rdbms.schema

Provides a definition of the schema in the datastore, including tables, columns and types. The public access point for datastore schema information is RDBMSSchemaHandler which provides a series of methods for accessing key schema data. For example
  • handler.getSchemaData(conn, "types"); returns all JDBC/SQL type information for this datastore.
  • handler.getSchemaData(conn, "tables", "myCatalog", "mySchema"); returns all table information in the supplied catalog/schema for this datastore.