Method: LMDB::Transaction#abort
- Defined in:
- ext/lmdb_ext/lmdb_ext.c
#abort ⇒ Object
Note:
After aborting a transaction, no further database operations should be done in the block. Any cursors created in the context of the transaction will no longer be valid.
Abort a transaction in process. Any subtransactions of this transaction will be aborted as well.
110 111 112 113 |
# File 'ext/lmdb_ext/lmdb_ext.c', line 110 static VALUE transaction_abort(VALUE self) { transaction_finish(self, 0); return Qnil; } |