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.

14 lines
357 B

7 years ago
  1. package hsfulda.de;
  2. public interface FedConnectionInterface {
  3. public void setAutoCommit(boolean autoCommit) throws FedException;
  4. public boolean getAutoCommit() throws FedException;
  5. public void commit() throws FedException;
  6. public void rollback() throws FedException;
  7. public void close() throws FedException;
  8. public FedStatement getStatement();
  9. }