Kim Boulton wrote:
> Is there a compiled v3.6.11 sqlite3.exe with the .timer facility
> enabled.

I don't think so for windows -- but I've been wrong many times before. ;)

[From shell.c]

#if !defined(_WIN32) && !defined(WIN32) && . . . .
#include <sys/time.h>
#include <sys/resource.h>
. . . .
. . . .
#define BEGIN_TIMER beginTimer()
#define END_TIMER endTimer()
#define HAS_TIMER 1
#else
#define BEGIN_TIMER
#define END_TIMER
#define HAS_TIMER 0
#endif

Bob

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

Reply via email to