Method: MDBX::Database#close
- Defined in:
- ext/mdbx_ext/database.c
#close ⇒ true
Cleanly close an opened database.
81 82 83 84 85 86 87 |
# File 'ext/mdbx_ext/database.c', line 81 VALUE rmdbx_close( VALUE self ) { UNWRAP_DB( self, db ); rmdbx_close_all( db ); return Qtrue; } |