Examples of newRowLocationTemplate()


Examples of org.apache.derby.iapi.store.access.ScanController.newRowLocationTemplate()

    /* Open a scan on the heap */
    ScanController heapScan = t_cc.openUnqualifiedHeapScan();

    // Get the RowLocation
    RowLocation baseRL = heapScan.newRowLocationTemplate();
    RowLocation badRL = heapScan.newRowLocationTemplate();
    heapScan.close();

    /* Open a scan on the index */
    ExecRow    indexRow = t_cc.getIndexTemplateRow(baseRL);
    ScanController indexScan = t_cc.openUnqualifiedIndexScan();
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.