1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.services.io.Storable; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 import org.apache.derby.iapi.types.DataValueDescriptor; 29 30 import org.apache.derby.iapi.types.RowLocation; 31 32 import org.apache.derby.iapi.services.io.FormatableBitSet; 33 34 import java.util.Hashtable ; 35 36 54 55 public interface GroupFetchScanController extends GenericScanController 56 { 57 136 public int fetchNextGroup( 137 DataValueDescriptor[][] row_array, 138 RowLocation[] rowloc_array) 139 throws StandardException; 140 141 public int fetchNextGroup( 142 DataValueDescriptor[][] row_array, 143 RowLocation[] oldrowloc_array, 144 RowLocation[] newrowloc_array) 145 throws StandardException; 146 147 160 boolean next() 161 throws StandardException; 162 } 163 | Popular Tags |