Re: [sqlite] Tracing Statements...

2006-02-11 Thread Tim Murison
On Sat, 2006-02-11 at 01:19 -0800, Nathaniel Smith wrote: > On Sat, Feb 11, 2006 at 03:37:11AM -0500, Tim Murison wrote: > > I would like to be able to generate a log of all sql statements executed > > by my program. > > > > Unfortunately all of my queries use parameters, and I would like to get >

Re: [sqlite] Tracing Statements...

2006-02-11 Thread Derrell . Lipman
Tim Murison <[EMAIL PROTECTED]> writes: > Hi, > > I would like to be able to generate a log of all sql statements executed > by my program. > > Unfortunately all of my queries use parameters, and I would like to get > the full query (all parameters replaced with their sqlite3_bind_* > values). > >

Re: [sqlite] Tracing Statements...

2006-02-11 Thread Nathaniel Smith
On Sat, Feb 11, 2006 at 03:37:11AM -0500, Tim Murison wrote: > I would like to be able to generate a log of all sql statements executed > by my program. > > Unfortunately all of my queries use parameters, and I would like to get > the full query (all parameters replaced with their sqlite3_bind_* >

[sqlite] Tracing Statements...

2006-02-11 Thread Tim Murison
Hi, I would like to be able to generate a log of all sql statements executed by my program. Unfortunately all of my queries use parameters, and I would like to get the full query (all parameters replaced with their sqlite3_bind_* values). Any ideas? Cheers, -Tim