Thanks Jim.

Suppose that I have a database that I use to store this message. The database 
contains only the message field.

So, actualy I'll load the record as show bellow:

DmOpenRef DbPtr;
MemHandle rh;
Char *rp;

//Open the Database
...

//Load the Record
rh = DmQueryRecord(DbPtr,0);
rp = MemHandleLock(rh);

...

MemHandleUnlock(rh);
DmCloseDatabase(DbPtrF);
Now...
1) How could I load only a "chunk" of data on my field?
2) When I do the DmQueryRecord and the MemHandleLock, am I already stored all 
the message on the Dynamic Heap, and consumed all the Memory avaiable?

Thanks again!!!
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to