1 21 22 package org.apache.derby.iapi.sql; 23 24 import org.apache.derby.iapi.types.DataValueDescriptor; 25 26 import org.apache.derby.iapi.error.StandardException; 27 28 41 42 public interface Row 43 { 44 public int nColumns(); 45 46 54 DataValueDescriptor getColumn (int position) throws StandardException; 55 56 61 void setColumn (int position, DataValueDescriptor value); 62 63 } 64 | Popular Tags |