in reply to Re: Re: examples using Palm::Addressbook?
in thread examples using Palm::Addressbook?
Cheers - L~R
Update: After messing around I was able to create a PDB without the use of a Palm Pilot and read it back in. I am not sure what your problem is, so I will either need a copy of your PDB, or would need you to execute the following piece of code and tell me what you get:
#!/usr/bin/perl -w use strict; use Palm::PDB; use Palm::Address; use Data::Dumper; my $pdb = new Palm::PDB; $pdb->Load("myfile.pdb") or die "Unable to attach to address book"; my $record = $pdb->{records}[0]; print Dumper($record);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: examples using Palm::Addressbook?
by fractureMech (Initiate) on Sep 08, 2003 at 02:51 UTC |