ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/BDB/BDB.pm
(Generate patch)

Comparing BDB/BDB.pm (file contents):
Revision 1.10 by root, Mon Aug 13 12:01:45 2007 UTC vs.
Revision 1.11 by root, Mon Aug 13 12:04:41 2007 UTC

72use strict 'vars'; 72use strict 'vars';
73 73
74use base 'Exporter'; 74use base 'Exporter';
75 75
76BEGIN { 76BEGIN {
77 our $VERSION = '0.6'; 77 our $VERSION = '1.0';
78 78
79 our @BDB_REQ = qw( 79 our @BDB_REQ = qw(
80 db_env_open db_env_close db_env_txn_checkpoint db_env_lock_detect 80 db_env_open db_env_close db_env_txn_checkpoint db_env_lock_detect
81 db_env_memp_sync db_env_memp_trickle 81 db_env_memp_sync db_env_memp_trickle
82 db_open db_close db_compact db_sync db_put db_get db_pget db_del db_key_range 82 db_open db_close db_compact db_sync db_put db_get db_pget db_del db_key_range
116 116
117The C<SV *> types are generic perl scalars (for input and output of data 117The C<SV *> types are generic perl scalars (for input and output of data
118values), and the C<SV *callback> is the optional callback function to call 118values), and the C<SV *callback> is the optional callback function to call
119when the request is completed. 119when the request is completed.
120 120
121The various C<DB_ENV> etc. arguments are handles return by db_env_create>, 121The various C<DB_ENV> etc. arguments are handles return by
122C<C<db_create>, C<txn_begin> and so on. If they have an appended _ornull> 122C<db_env_create>, C<db_create>, C<txn_begin> and so on. If they have an
123C<this means they are optional and you can pass C<undef> for them, 123appended C<_ornull> this means they are optional and you can pass C<undef>
124C<resulting a NULL pointer on the C level. 124for them, resulting a NULL pointer on the C level.
125 125
126=head3 BDB functions 126=head3 BDB functions
127 127
128Functions in the BDB namespace, exported by default: 128Functions in the BDB namespace, exported by default:
129 129

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines