Re: [sqlite] Debugging SQLite Code in C - anything like Perl's DBI->trace?

2010-04-17 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/17/2010 11:08 AM, andrew fabbro wrote: > I realize that's at the DBI layer and part of the DBI spec, but...is anyone > aware of something similar in the C environment for SQLite? There does not > appear to be any sort of debug logging, etc.

Re: [sqlite] Debugging SQLite Code in C - anything like Perl's DBI->trace?

2010-04-17 Thread Jay A. Kreibich
On Sat, Apr 17, 2010 at 11:08:49AM -0700, andrew fabbro scratched on the wall: > I've been totally spoiled by Perl's DBI->trace functionality, which allows > one to toggle SQL tracing on and off, and at various depths, so you can see > what the engine is doing, what bind variables are being sent

[sqlite] Debugging SQLite Code in C - anything like Perl's DBI->trace?

2010-04-17 Thread andrew fabbro
I've been totally spoiled by Perl's DBI->trace functionality, which allows one to toggle SQL tracing on and off, and at various depths, so you can see what the engine is doing, what bind variables are being sent to it, etc. I realize that's at the DBI layer and part of the DBI spec, but...is