class SQLite3::Database

def commit

abort? and rollback or commit.
to allow it to be used in idioms like
this will cause an error to be raised. This returns +true+, in order
Commits the current transaction. If there is no current transaction,
def commit
  execute "commit transaction"
  true
end