NAME
BerkeleyDB::Easy::Handle - Generic class for Btree, Hash, Recno, Queue, and Heap handles.
METHODS
You can optionally provide flags for most methods, but first check to see if there isn't a dedicated wrapper method to accomplish what you want.
get
$val = $db->get($key);
put
$val = $db->put($key, $val);
exists
$bool = $db->exists($key);
sync
$status = $db->sync();
cursor
$cursor = $db->cursor();
BUGS
This module is functional but unfinished.
AUTHOR
Rob Schaber, <robschaber at gmail.com>
LICENSE
Copyright 2013 Rob Schaber.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.