Re: [sqlite] PRAGMA bug in 3.7.7 (but fine in 3.7.6.3)

2011-06-26 Thread Richard Hipp
> int err = sqlite3_exec(db3, "PRAGMA case_sensitive_like=1;", NULL, > NULL, &errmsg); > if (err != SQLITE_OK) > printf("Error %d: %s\n", err, errmsg), sqlite3_free(errmsg); > } > return 0; > } > ]]] > ___ > sqlite-users mailing list > sqlite-us...@sqlite.org > http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users > -- D. Richard Hipp d...@sqlite.org

Re: [sqlite] PRAGMA bug in 3.7.7 (but fine in 3.7.6.3)

2011-06-26 Thread Richard Hipp
On Sun, Jun 26, 2011 at 6:52 PM, Richard Hipp wrote: > The big mystery is why this problem is not showing up in our rather > extensive test suite. I'm still investigating that aspect of the issue. > > The reason our tests didn't pick up on this is that the error only

Re: [sqlite] PRAGMA bug in 3.7.7 (but fine in 3.7.6.3)

2011-06-26 Thread Richard Hipp
On Sun, Jun 26, 2011 at 7:28 PM, Richard Hipp wrote: > On Sun, Jun 26, 2011 at 6:52 PM, Richard Hipp wrote: > >> The big mystery is why this problem is not showing up in our rather >> extensive test suite. I'm still investigating that aspect of the issue. >> >&