Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pdbdump(1p) [debian man page]

PDBDUMP(1p)						User Contributed Perl Documentation					       PDBDUMP(1p)

NAME
pdbdump - Print the contents of a Palm PDB file SYNOPSIS
"pdbdump" [options] filename DESCRIPTION
"pdbdump" reads a PalmOS .pdb file, parses it, and prints its contents. This includes both a hex dump of the raw data of each piece, and a human-readable list of the various values, insofar as possible. The aim of "pdbdump" is to allow one to verify whether a particular file is a well-formed PalmOS database file and if not, where the error lies. If the database is of a known type, "pdbdump" parses the AppInfo block and records. Otherwise, it simply prints out a hex dump of their contents. "pdbdump" includes, by default, support for most of the built-in applications. Other helper modules may be loaded with the "-M" option. OPTIONS
-h -help --help Print a usage message and exit. -nohex Don't print the hex dump of the various parts. -Mmodule "use" the named module. This can be useful for loading additional helper modules. BUGS
"pdbdump" only recognizes record databases (".pdb" files), not resource databases (".prc" files). SEE ALSO
Palm::PDB(3) AUTHOR
Andrew Arensburger <arensb@ooblick.com> perl v5.10.1 2010-02-23 PDBDUMP(1p)

Check Out this Related Man Page

Memo(3pm)						User Contributed Perl Documentation						 Memo(3pm)

NAME
Palm::Memo - Handler for Palm Memo databases. SYNOPSIS
use Palm::Memo; DESCRIPTION
The Memo PDB handler is a helper class for the Palm::PDB package. It parses Memo databases. AppInfo block The AppInfo block begins with standard category support. See Palm::StdAppInfo for details. Other fields include: $pdb->{appinfo}{sortOrder} I don't know what this is. Sort block $pdb->{sort} This is a scalar, the raw data of the sort block. Records $record = $pdb->{records}[N] $record->{data} A string, the text of the memo. new $pdb = new Palm::Memo; Create a new PDB, initialized with the various Palm::Memo fields and an empty record list. Use this method if you're creating a Memo PDB from scratch. new_Record $record = $pdb->new_Record; Creates a new Memo record, with blank values for all of the fields. "new_Record" does not add the new record to $pdb. For that, you want "$pdb->append_Record". SOURCE CONTROL
The source is in Github: http://github.com/briandfoy/p5-Palm/tree/master AUTHOR
Alessandro Zummo, "<a.zummo@towertech.it>" Currently maintained by brian d foy, "<bdfoy@cpan.org>" SEE ALSO
Palm::PDB(3) Palm::StdAppInfo(3) perl v5.10.1 2010-02-23 Memo(3pm)
Man Page