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 anyone
aware of something similar in the C environment for SQLite?  There does not
appear to be any sort of debug logging, etc. that one can turn on.
Obviously, I can write things in my code, but sometimes it's helpful to see
what the engine receives as well as what I think I send.  I don't see any
functions targeted at this, either.

If not, does anyone have any ideas for coding up some sort of logging
engine?  I don't really want to get deep into SQLite internals, though I
suspect that's what would be needed...

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

Reply via email to