Package org.jpox.store.rdbms.table

Examples of org.jpox.store.rdbms.table.SchemaTable


        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
        {
View Full Code Here

TOP

Related Classes of org.jpox.store.rdbms.table.SchemaTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.