Re: Opening database as file.

2002-04-03 Thread Yahoo
, April 02, 2002 2:16 PM Subject: RE: Opening database as file. Is it possible to open an existing palm database file?? In Palm OS, we use different terminology. A database is not a file. In fact, it's sort of the other way around. A file stream is a kind of database. Both are completely

RE: Opening database as file.

2002-04-03 Thread Danny Epstein
WriteDBProc (void *dataP, UInt32 *sizeP, void *userDataP) { StrCat (dataR,dataP); } The data passed to the your callback function isn't strings, hence the sizeP parameter. If you want to put the data into your dataR array, you'll need to keep track of where you are with another variable.

RE: Opening database as file.

2002-04-02 Thread Danny Epstein
Is it possible to open an existing palm database file?? In Palm OS, we use different terminology. A database is not a file. In fact, it's sort of the other way around. A file stream is a kind of database. Both are completely different than VFS files which live on expansion cards. I tried this