From: Tom D. <td...@vg...> - 2000-01-08 01:33:26
|
On Fri, 7 Jan 2000, Kyo wrote: > Yes, I want to access the database from Palm Pilot. So I want to access > it from other program. Because I think, I need 3items of database(that > has 8items, for example) > > For Example.... > > [Current DB's database] > Name: > Address: > Age: > ZipCode: > WorkTEL: > HomeTEL: > Mail: > URL: > > [My program. ()is access from database's data and display.] > (Name): > Impression: > MeetDay: > (HomeTEL): > (Mail): > Note: Read the io.c source file. All the functions that you need will be in there. Use OpenDatabase() and CloseDatabase() to open/close the database you want. Use UnpackRecord() to gain access to the individual fields once you have used a standard PalmOS function like DmQueryRecord() to get a handle to the record. Examples of how to use UnpackRecord() are all over the DB source code. Tom |