The _commit
function is established to commit a transaction. By default, it does not need to be called explicitly.
try{
db.change("TB1","deleteAll",{});
db._commit();
}catch(e){
db._rollback();
}
Calling | Returning |
---|---|
db. _commit ( ) |
void |
db. _commit ( jdbcResourceName ) |
void |
Parameters | Type | Description |
---|---|---|
jdbcResourceName |
String |
To operate the transaction for another database resource, not the default. |