class SQLite3::Database

def rollback

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
Rolls the current transaction back. If there is no current transaction,
def rollback
  execute "rollback transaction"
  true
end