Package org.datanucleus.store.mapped

Examples of org.datanucleus.store.mapped.FetchStatement


                    sb.append(' ').append(mainAlias);
                }
            }
            else
            {
                FetchStatement subQuery = mainTable.getStoreManager().getFetchStatement(mainTable);
                Iterator i = columns.iterator();
                while (i.hasNext())
                {
                    subQuery.select((DatastoreField)i.next());
                }

                // Assumed to not want any locking in this statement
                sb.append('(').append(subQuery.toString(false)).append(") ").append(mainAlias);
            }

            sqlText = sb.toString();
        }
View Full Code Here

TOP

Related Classes of org.datanucleus.store.mapped.FetchStatement

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.