Interface DBAction2
-
public interface DBAction2
Action with 2 connections to database functions.Designed for test purposes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
run(DBFunctions dbf1, DBFunctions dbf2)
-
-
-
Method Detail
-
run
void run(DBFunctions dbf1, DBFunctions dbf2) throws DBException
- Parameters:
dbf1
- database helper object (within a connection).dbf2
- database helper object (within a connection).- Throws:
DBException
- when exception occured. All SQL exceptions should be converted into DB ones, seeSQLExceptionConvertor
.
-
-