Class DisableAutocommitAction
- java.lang.Object
-
- org.linuxforhealth.fhir.persistence.jdbc.connection.ChainedAction
-
- org.linuxforhealth.fhir.persistence.jdbc.connection.DisableAutocommitAction
-
- All Implemented Interfaces:
Action
public class DisableAutocommitAction extends ChainedAction
Command to turn off autocommit
-
-
Constructor Summary
Constructors Constructor Description DisableAutocommitAction()
Public constructorDisableAutocommitAction(Action next)
Public constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
performOn(FHIRDbFlavor flavor, java.sql.Connection c)
Perform this action on the given connection
-
-
-
Constructor Detail
-
DisableAutocommitAction
public DisableAutocommitAction()
Public constructor
-
DisableAutocommitAction
public DisableAutocommitAction(Action next)
Public constructor- Parameters:
next
- action in a chain
-
-
Method Detail
-
performOn
public void performOn(FHIRDbFlavor flavor, java.sql.Connection c) throws FHIRPersistenceDBConnectException
Description copied from interface:Action
Perform this action on the given connection- Specified by:
performOn
in interfaceAction
- Overrides:
performOn
in classChainedAction
- Parameters:
flavor
- describes the type of database associated with the given connectionc
- the connection to perform the action on- Throws:
FHIRPersistenceDBConnectException
-
-