1Palm::Memo(3) User Contributed Perl Documentation Palm::Memo(3)
2
3
4
6 Palm::Memo - Handler for Palm Memo databases.
7
9 This document describes version 1.400 of Palm::Memo, released March 14,
10 2015 as part of Palm version 1.400.
11
13 use Palm::Memo;
14
16 The Memo PDB handler is a helper class for the Palm::PDB package. It
17 parses Memo databases.
18
19 AppInfo block
20 The AppInfo block begins with standard category support. See
21 Palm::StdAppInfo for details.
22
23 Other fields include:
24
25 $pdb->{appinfo}{sortOrder}
26
27 I don't know what this is.
28
29 Sort block
30 $pdb->{sort}
31
32 This is a scalar, the raw data of the sort block.
33
34 Records
35 $record = $pdb->{records}[N]
36
37 $record->{data}
38
39 A string, the text of the memo.
40
41 new
42 $pdb = new Palm::Memo;
43
44 Create a new PDB, initialized with the various Palm::Memo fields and an
45 empty record list.
46
47 Use this method if you're creating a Memo PDB from scratch.
48
49 new_Record
50 $record = $pdb->new_Record;
51
52 Creates a new Memo record, with blank values for all of the fields.
53
54 "new_Record" does not add the new record to $pdb. For that, you want
55 "$pdb->append_Record".
56
58 Palm::PDB
59
60 Palm::StdAppInfo
61
63 Palm::Memo requires no configuration files or environment variables.
64
66 None reported.
67
69 No bugs have been reported.
70
72 Andrew Arensburger "<arensb AT ooblick.com>"
73
74 Currently maintained by Christopher J. Madsen "<perl AT cjmweb.net>"
75
76 Please report any bugs or feature requests to
77 "<bug-Palm AT rt.cpan.org>" or through the web interface at
78 <http://rt.cpan.org/Public/Bug/Report.html?Queue=Palm>.
79
80 You can follow or contribute to p5-Palm's development at
81 <https://github.com/madsen/p5-Palm>.
82
84 This software is copyright (c) 2003 by Andrew Arensburger & Alessandro
85 Zummo.
86
87 This is free software; you can redistribute it and/or modify it under
88 the same terms as the Perl 5 programming language system itself.
89
91 BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
92 FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT
93 WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER
94 PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND,
95 EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
96 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE
97 ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH
98 YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL
99 NECESSARY SERVICING, REPAIR, OR CORRECTION.
100
101 IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
102 WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
103 REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENSE, BE LIABLE
104 TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR
105 CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
106 SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
107 RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
108 FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
109 SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
110 DAMAGES.
111
112
113
114perl v5.34.0 2021-07-22 Palm::Memo(3)