func (env *Env) DBIClose(dbi DBI) { C.mdb_dbi_close(env._env, C.MDB_dbi(dbi)) }
// CloseDBI closes the database handle, db. Normally calling CloseDBI // explicitly is not necessary. // // It is the caller's responsibility to serialize calls to CloseDBI. // // See mdb_dbi_close. func (env *Env) CloseDBI(db DBI) { C.mdb_dbi_close(env._env, C.MDB_dbi(db)) }