Is it possible to duplicate a prepared statement?

I have a need to run the same query multiple times with different
parameters.  I can't re-use the prepared statement because multiple copies
of the same query, but with different parameters, are active at the same
time.  That is, I need to step through the results of these queries in step
with each other, not serially.

I was hoping to avoid preparing the same sql multiple times, on the
assumption that it would be more efficient to somehow duplicate a prepared
statement.

Is this possible?

Nick Hodapp
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to