-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.txt
83 lines (51 loc) · 2.28 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Note: this project was made in 2005, as Palm was all the hype in what was then called "handheld computing".
I'm just putting it here as an archive, and who knows if it could be of any use. I just "mavenized" the
project so it would build easily, everything else is as it was back in the days. Of course the "package
contents" section below doesn't apply anymore.
JPDB, a Java library to read/write Palm OS file formats
Introduction
============
JPDB is a Java library intended to read and write Palm OS database storage
file formats, that is the format used to store Palm OS databases on a classical
filesystem. This includes PDB files (general purpose record-oriented databases)
and PRC files (resource-oriented databases, including applications).
JPDB may be useful for Java applications that need to generate PDB or PRC files.
License
=======
JPDB is Free Software. JPDB is released under the terms of the LGPL, a copy of
which is provided in the LICENSE.txt file.
Status
======
What JPDB currently does:
-read and write PDB and PRC files
-access all database and record attributes
-access record and resource contents as raw bytes
What JPDB does not:
-parse PQA files (not likely to be implemented, because a PQA is only a PDB
with a specific format, and it is now becoming obsolete)
JPDB is largely untested and as such should not be considered stable.
Package contents
================
README.txt this file
LICENSE.txt the full text of the LGPL license
jpdb.jar the JPDB library to include in your projects
DbInfoSwing.jar self-executable interactive demo
src/oge/jpdb/ library sources (src package only)
src/oge/jpdb/demo demo applications sources
src/oge/jpdb/demo/gui interactive demo sources (main class DbInfoSwing)
doc/index.html API documentation
What next ?
===========
1) Run the interactive demo:
If your JRE is configured properly, double-click on DbInfoSwing.jar and the
application will start; otherwise open a command prompt, cd to where
DbInfoSwing.jar is and type:
java -cp DbInfoSwing.jar oge.jpdb.demo.gui.DbInfoSwing
2) Check out the other demos in src/oge/jpdb/demo
3) Read the API documentation in doc/index.html
4) Start using JPDB in your own projects!
Contact
=======
Comments, questions, suggestions: olivier@palmattitude.org
--
Olivier Gérardin, 2005-09-01