All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.venky.swf.db._IDatabase Maven / Gradle / Ivy

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