Package org.jpox.store.mapped

Examples of org.jpox.store.mapped.SecondaryDatastoreClass


                {
                    DatastoreContainerObject mappingTable = m.getDatastoreContainer();
                    if (fmd.getTable() != null && mappingTable instanceof SecondaryDatastoreClass)
                    {
                        // Secondary table field
                        SecondaryDatastoreClass secTable = (SecondaryDatastoreClass)mappingTable;
                        if (secTable.getJoinMetaData().isOuter())
                        {
                            // Outer join
                            expressionsIndex = fetchStmt.selectOuterJoin(secTable.getIDMapping(), m, null, null, true);
                        }
                        else
                        {
                            // Inner join, so just select the fields and FetchStatement does the rest
                            expressionsIndex = new int[m.getNumberOfDatastoreFields()];
View Full Code Here

TOP

Related Classes of org.jpox.store.mapped.SecondaryDatastoreClass

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.