On Thu, 2005-01-27 at 10:34 -0700, Dennis Cote wrote:
> Hi,
> 
> I'm trying to track down a crash in SQLite 3.1a. I have built a debug 
> version using
> 
> ./sqlite/configure --enable-debug
> 
> The Makefile generated does not contain the -DNDEBUG flag. When I use the 
> explain command to dump an SQL statement, I get the additional comments in 
> the explain output.
> 
> My problem is that I don't get any output when I turn on the vdbe tracing 
> with
> 
> PRAGMA vdbe_trace=on;
> 
> Below is a log of a simple session that shows the lack of vdbe tracing.
> 

The ./configure script is (as usual) behind the curve.  Manually
modify the Makefile to include the following options:

    -DSQLITE_DEBUG=1 -DSQLITE_MEMDEBUG=1
-- 
D. Richard Hipp <[EMAIL PROTECTED]>

Reply via email to