On Mon, Sep 15, 2014 at 8:08 AM, Simon Slavin <[email protected]> wrote:
> > On 15 Sep 2014, at 12:46pm, Prakash Premkumar <[email protected]> > 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 [email protected] _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

