Re: [sqlite] Compiling SQLite and MAX_ATTACHED databases

2005-11-10 Thread Dan Kennedy
> #define MAX_ATTACHED 10 > > Is this a per-process limit, or a per-sqlite3 handle limit? It's per-handle. Also, if you haven't found it already, this page has some of the compilation options you can set: http://www.sqlite.org/compile.html _

[sqlite] Compiling SQLite and MAX_ATTACHED databases

2005-11-09 Thread Doug Nebeker
I was reading through the wiki yesterday and came across the following: * Make sure you're compiling SQLite with -DTHREADSAFE=1 I didn't know about that #define! I know about the defines that are related to the pragmas, but are there others (well, dumb question, of course there are). Is there a