On Tue, Apr 22, 2008 at 03:33:27PM -0700, Richard Klein scratched on the wall: > You can call sqlite3_memory_highwater() to find > the maximum amount of memory (in bytes) that your > app has used. > > Then you can divide this number by 2000 (the default > size of a page) to determine the max number of pages > that have been cached.
The default page size is 1024 bytes. The default cache size (in pages) is 2000. (At least according to http://www.sqlite.org/compile.html) -j -- Jay A. Kreibich < J A Y @ K R E I B I.C H > "'People who live in bamboo houses should not throw pandas.' Jesus said that." - "The Ninja", www.AskANinja.com, "Special Delivery 10: Pop!Tech 2006" _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

