Query: notedb::dbm
OS: debian
Section: 3pm
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
NOTEDB::dbm(3pm) User Contributed Perl Documentation NOTEDB::dbm(3pm)NAMENOTEDB::dbm - module lib for accessing a notedb from perlSYNOPSIS# include the module use NOTEDB; # create a new NOTEDB object (the last 4 params are db table/field names) $db = new NOTEDB("mysql","note","/home/user/.notedb/"); # get a single note ($note, $date) = $db->get_single(1); # search for a certain note %matching_notes = $db->get_search("somewhat"); # format of returned hash: #$matching_notes{$numberofnote}->{'note' => 'something', 'date' => '23.12.2000 10:33:02'} # get all existing notes %all_notes = $db->get_all(); # format of returnes hash like the one from get_search above # get the next noteid available $next_num = $db->get_nextnum(); # recount all noteids starting by 1 (useful after deleting one!) $db->set_recountnums(); # modify a certain note $db->set_edit(1, "any text", "23.12.2000 10:33:02"); # create a new note $db->set_new(5, "any new text", "23.12.2000 10:33:02"); # delete a certain note $db->set_del(5);DESCRIPTIONYou can use this module for accessing a note database. This is the dbm module. It uses the DB_FILE module to store it's data and it uses DBM files for tis purpose. Currently, NOTEDB module is only used by note itself. But feel free to use it within your own project! Perhaps someone want to implement a webinterface to note...USAGEplease see the section SYNOPSIS, it says it all.AUTHORThomas Linden <tom@daemon.de>. perl v5.10.1 2011-02-12 NOTEDB::dbm(3pm)
Related Man Pages |
---|
authen::simple::dbm(3pm) - debian |
notedb::binary(3pm) - debian |
notedb::dumper(3pm) - debian |
notedb::general(3pm) - debian |
notedb::text(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
About the Lotus Note(Pls answer me) |
sed help |
How to put content of file into a variable? |
sed delete wildcard within a string |