On Thu, Oct 02, 2003 at 06:46:57PM +0530, AnilB wrote: > So i think i am clear now.I just want to read the data from a stream > database continuosly with out using this records n all(just as i do in a > normal C progrm).Is this possible?? > > 2) I cudnot use this MemPtrNew for allocating memory of 320kb size.I cudnot > find the MemGluePtrNew.I cud find the palmGlue libraray and the include > files but no file contains this function.Shud i dowonload file containing > this function.
You really really really do not want to allocate a 320k chunk on the palm. It is a limited memory device. You especially don't want to do this if all you're planning to do is copy data from a file stream into the allocated memory. Instead, change the architecture of your application so that it uses standard databases instead of streams, so that you can access the data directly with a pointer. -- Dave Carrigan Seattle, WA, USA [EMAIL PROTECTED] | http://www.rudedog.org/ | ICQ:161669680 UNIX-Apache-Perl-Linux-Firewalls-LDAP-C-C++-DNS-PalmOS-PostgreSQL-MySQL -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
