in reply to Re^3: parsing Palm databases
in thread parsing Palm databases
J-Pilot (though I have not tried it) seems to be able to handle it though - they must have reverse-engineered the format (it may be a nice exercise to use that for updating Palm::Memo)
But for me the workaround is to simply use Palm::Raw, I can live with what I can get with that, eg:
use Palm::PDB; use Palm::Raw; use Data::Dumper; my $pdb = new Palm::PDB; $pdb->Load("MemosDB-PMem.pdb"); print Dumper($pdb);
|
---|