You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
444 B

7 years ago
  1. package hsfulda.de;
  2. public interface FedResultSetInterface {
  3. public boolean next() throws FedException;
  4. public String getString(int columnIndex) throws FedException;
  5. public int getInt(int columnIndex) throws FedException;
  6. public int getColumnCount() throws FedException;
  7. public String getColumnName(int index) throws FedException;
  8. public int getColumnType(int index) throws FedException;
  9. public void close() throws FedException;
  10. }