On 10/23/06, Dave Dyer <[EMAIL PROTECTED]> wrote:

You don't appear to be using BIND in the manner I was hoping for.  You're
using BIND to replace variables in the query.  I want to use BIND
(or something like it) eliminate the need for callback functions
to consume the results of a select.

Yes, you're correct. Bind is used to pass parameters to the executed sql
not to retrieve the results. You must 'pull' all the results when you execute
a query. Having sqlite 'push' them would only work if you have a single
row as a result set or unless you provide it with a callback so it can tell
you when a row is fully pushed.

--
SqliteImporter and SqliteReplicator: Command line utilities for Sqlite
http://www.reddawn.net/~jsprenkl/Sqlite

Cthulhu Bucks!
http://www.cthulhubucks.com

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to