Transaction control, commit the current transaction
Namespace:
VelocityDb.Session
Assembly:
VelocityDb (in VelocityDb.dll) Version: 11.1.0.0 (11.1)
Syntax public void Commit(
bool doRecoveryCheck = true,
bool isRestore = false
)
Public Sub Commit (
Optional doRecoveryCheck As Boolean = true,
Optional isRestore As Boolean = false
)
public:
void Commit(
bool doRecoveryCheck = true,
bool isRestore = false
)
member Commit :
?doRecoveryCheck : bool *
?isRestore : bool
(* Defaults:
let _doRecoveryCheck = defaultArg doRecoveryCheck true
let _isRestore = defaultArg isRestore false
*)
-> unit
Parameters
- doRecoveryCheck (Optional)
- Type: SystemBoolean
Only case for not doing it is when committing a RestoreFrom(String, String, UInt32, DateTime) - isRestore (Optional)
- Type: SystemBoolean
Inform session that this is part of a restore
See Also