1 5 package org.h2.result; 6 7 import java.sql.SQLException ; 8 9 import org.h2.value.Value; 10 11 public interface ResultInterface { 12 void reset() throws SQLException ; 13 Value[] currentRow(); 14 boolean next() throws SQLException ; 15 int getRowId(); 16 int getVisibleColumnCount(); 17 int getRowCount(); 18 void close(); 19 String getAlias(int i); 20 String getSchemaName(int i); 21 String getTableName(int i); 22 String getColumnName(int i); 23 int getColumnType(int i); 24 long getColumnPrecision(int i); 25 int getColumnScale(int i); 26 int getDisplaySize(int i); 27 boolean isAutoIncrement(int i); 28 int getNullable(int i); 29 boolean isUpdateCount(); 30 int getUpdateCount(); 31 } 32 | Popular Tags |