
com.venky.swf.db._IDatabase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
The newest version!
package com.venky.swf.db;
import java.sql.SQLException;
import com.venky.swf.util._ICloseable;
public interface _IDatabase extends _ICloseable{
public void open(Object user);
public _ITransaction getCurrentTransaction() throws SQLException;
public void loadFactorySettings();
public boolean isActiveTransactionPresent();
public T getContext(String name);
public void setContext(String name, T value);
public interface _ITransaction {
public void commit() ;
public void rollback(Throwable th) ;
public A getAttribute(String string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy