Package nexj.core.persistence.sql.SQLAdapter

Examples of nexj.core.persistence.sql.SQLAdapter.OrderByPrefix


         int nGenModeSaved = m_nGenMode;

         m_nGenMode = GEN_ORDERBY;
         buf.append(" order by ");

         OrderByPrefix prefix = m_adapter.getOrderByPrefix(query);
         int nPrefixColumnCount = 0;
         Index index = null;
         Object mapping = null;
         boolean bSortDirectionReversed = false;

         if (prefix != null)
         {
            nPrefixColumnCount = prefix.getColumnCount();
            index = prefix.getIndex();
            mapping = prefix.getMapping();
            bSortDirectionReversed = prefix.isSortDirectionReversed();
            nCount += nPrefixColumnCount;
         }

         initOffsetArray(nCount);
View Full Code Here

TOP

Related Classes of nexj.core.persistence.sql.SQLAdapter.OrderByPrefix

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.