Package org.jpox.store.rdbms.table

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


        {
            Iterator tablesIter = secondaryTables.iterator();
            while (tablesIter.hasNext())
            {
                // Process the secondary table
                SecondaryTable secTable = (SecondaryTable)tablesIter.next();
                insertTable(secTable, sm, clr);
            }
        }
    }
View Full Code Here


        {
            Iterator tablesIter = secondaryTables.iterator();
            while (tablesIter.hasNext())
            {
                // Process the secondary table
                SecondaryTable secTable = (SecondaryTable)tablesIter.next();
                updateTable(secTable, sm, clr, fieldMetaData);
            }
        }
    }
View Full Code Here

        {
            Iterator tablesIter = secondaryTables.iterator();
            while (tablesIter.hasNext())
            {
                // Process the secondary table
                SecondaryTable secTable = (SecondaryTable)tablesIter.next();
                deleteTable(secTable, sm, clr);
            }
        }

        // Do the actual delete of this table
View Full Code Here

TOP

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

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.