throws Exception
{
// Initialise the Catalog/Schema names
PersistenceConfiguration conf = omfContext.getPersistenceConfiguration();
RDBMSAdapter rdba = (RDBMSAdapter)dba;
if ((conf.hasProperty("org.jpox.mapping.Catalog") && rdba.supportsCatalogsInTableDefinitions()) ||
(conf.hasProperty("org.jpox.mapping.Schema") && rdba.supportsSchemasInTableDefinitions()))
{
// User-specified catalog/schema
catalogName = conf.getStringProperty("org.jpox.mapping.Catalog");
schemaName = conf.getStringProperty("org.jpox.mapping.Schema");