storeMgr = (RDBMSManager)store_mgr;
// Create the auto-start table in the datastore, using any user-specified name
PersistenceConfiguration conf = storeMgr.getOMFContext().getPersistenceConfiguration();
String tableName = conf.getStringProperty("org.jpox.rdbms.schemaTable.tableName");
schemaTable = new SchemaTable(storeMgr, tableName);
schemaTable.initialize(clr);
// We need to autocreate the table and validate it being correct.
try
{