The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Palm::Memo32 - Handler for PaulComputing pEdit Memo32 databases.

SYNOPSIS

    use Palm::Memo32;

DESCRIPTION

The Memo32 PDB handler is a helper class for the Palm::PDB package. It parses PaulComputing (http://www.paulcomputing.com/) pEdit Memo32 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::Memo32;

Create a new PDB, initialized with the various Palm::Memo32 fields and an empty record list.

Use this method if you're creating a Memo32 PDB from scratch.

new_Record

  $record = $pdb->new_Record;

Creates a new Memo32 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.

AUTHOR

Wayne A. Arthurton <wayner@arthurton.com>

SEE ALSO

Palm::PDB(3)

Palm::Memo(3)

Palm::StdAppInfo(3)