| 1 package com.daffodilwoods.daffodildb.server.datasystem.utility; 2 3 4 import com.daffodilwoods.database.resource.DException; 5 import com.daffodilwoods.database.general.QualifiedIdentifier; 6 import com.daffodilwoods.daffodildb.server.sql99.dql.execution.*; 7 8 9 public interface _Record extends java.io.Serializable { 10 void setObject(Object [] row) ; 11 12 void update(String column,Object value ) throws DException; 13 14 void update(int index,Object value ) throws DException; 15 16 void update ( int[] columns , Object [] values ) throws DException; 17 18 Object getObject(int columnIndex)throws DException; 19 20 Object getObject(String columnName)throws DException; 21 22 Object [] getObject(String [] columnNames)throws DException; 23 24 Object [] getObject(int [] columnIndexes)throws DException; 25 26 Object [] getObject() throws DException; 27 28 int getColumnCount() throws DException; 29 Object clone(); 30 31 _Record getRecord(String columnName) throws DException; 32 33 Object getObject(_TableInfo tableInfo, int columnIndex)throws DException; 34 35 Object getObject(_TableInfo tableInfo,String columnName)throws DException; 36 37 } 38 | Popular Tags |