Skip to content

Commit

Permalink
fix: re-enable transaction methods in scripts issue #9690
Browse files Browse the repository at this point in the history
  • Loading branch information
tglman committed Aug 7, 2023
1 parent dd5358e commit 008ece6
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,18 @@ public void delete(ORecord record) {
this.database.delete(record);
}

public void commit() {
database.commit();
}

public void rollback() {
database.rollback();
}

public void begin() {
database.begin();
}

public OBlob newBlob() {
return this.database.newBlob();
}
Expand Down

0 comments on commit 008ece6

Please sign in to comment.