Examples of SecondaryDatastoreClass


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
Copyright © 2018 www.massapi.com. 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.