On Mon, Sep 15, 2014 at 8:08 AM, Simon Slavin <slav...@bigfraud.org> wrote:

>
> On 15 Sep 2014, at 12:46pm, Prakash Premkumar <prakash.p...@gmail.com>
> wrote:
>
> > How do I set the sqlite compile time option SQLITE_DEBUG ?
>
> Include the following line in your C source code:
>
> #define SQLITE_DEBUG 1
>
> near the top, along with any other lines you have starting with '#'.  The
> line should not end with a semicolon.
>

I think Prakash probably wants to set SQLITE_DEBUG on the sqlite3.c source
file, not on his own code, which means that adding the #define above won't
help.

Prakash:  Use the -DSQLITE_DEBUG command-line option when you compile.
Edit the makefiles if necessary to add that option to the line that runs
the compiler.
-- 
D. Richard Hipp
d...@sqlite.org
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to