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

package hsfulda.de;
public interface FedResultSetInterface {
public boolean next() throws FedException;
public String getString(int columnIndex) throws FedException;
public int getInt(int columnIndex) throws FedException;
public int getColumnCount() throws FedException;
public String getColumnName(int index) throws FedException;
public int getColumnType(int index) throws FedException;
public void close() throws FedException;
}