Search found 2 matches

by PaulSquires
Wed Jun 13, 2007 1:18 am
Forum: Off Topic
Topic: Cheetah Indexing with PureBasic
Replies: 18
Views: 2674

I don't really know PureBasic but I expect that you are not assigning the index handle to a variable?


xdbOpenIndex("curr1.idx", hdb1)


Should be: ?????

curr1 = xdbOpenIndex("curr1.idx", hdb1)


...and...


xdbReindexAll(curr1, 0)


Should be: ?????

xdbReindexAll(hdb1, 0)


Just a ...
by PaulSquires
Sun Aug 13, 2006 3:39 am
Forum: General Discussion
Topic: DBF Files
Replies: 19
Views: 7326

The Cheetah Database query functions use a buffer to read the database so the process is faster than reading one record at a time especially if you must process every record in your database.

There is one problem with the freeware version of Cheetah: If your database has any memo fields then ...