Re: [sqlite] how to use the sqlite under "strict memory manage" OS ?

2005-04-07 Thread Gé Weijers
Steven, I believe the simplest way to do this is to write a simple memory manager yourself, as a layer between the system memory manager and the sqlite stuff. This memory manager's function in life is to keep track of all allocations and deallocations, and to free all allocated memory just before

[sqlite] how to use the sqlite under "strict memory manage" OS ?

2005-04-07 Thread StevenLiu
Hi, everyone: When using the Sqlite (version for Linux 2.8.11) under Symbian I found it always cannot free the memory allocated itself and I have to do it myself. For instance, we must use the sqlitefree() after each sqliteMalloc(), otherwise my Symbian UI will report to me an error :u