Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Stephen Chrzanowski
err.. that should be Embarcadero 10.1 Berlin... ugh.. PROOFREAD!!! On Tue, Oct 10, 2017 at 4:20 PM, Stephen Chrzanowski wrote: > > Based purely on my experience with Delphi (From Borland Version 5 to > Emarcadero 10.5 Berlin); >

Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Stephen Chrzanowski
1> Standalone 2.a> If you're referring to the DLL from an application you're building, it must be either the Path, or, in the "Directory" your shortcut points to, which is either something custom, or, the EXEs current directory. Its already been mentioned where that DLL should be placed. 2.b> If

Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Barry
Perhaps I misunderestimate your question, but I think a certain amount of explanation of how SQLite works may be in order. What are you trying to do? The SQLite shell tool does not depend on the DLL (the SQLite library is instead included in the executable file). You can put sqlite3.exe wherever

Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Keith Medcalf
Hmmm. Must be rather old since it mentions 16-bit Windows but not 64-bit Windows. So for all the parts that reference the "System" directories you need to apply a grain of salt 64-bit Windows looks for 64-bit DLLs in Windows\System32 64-bit Windows looks for 32-bit DLLs in

Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Warren Young
On Oct 10, 2017, at 3:49 AM, Phoenix wrote: > > 2) Does the .dll need to be in a specific folder or is it okay if the > folder is listed in my PATH? https://msdn.microsoft.com/en-us/library/windows/desktop/ms682586(v=vs.85).aspx

[sqlite] Potential bug with compile-time option SQLITE_OMIT_AUTOVACUUM

2017-10-10 Thread Bernard Schurdevin
Hi, Building amalgamation sqlite3.c with option SQLITE_OMIT_AUTOVACUUM=1 leads to malformed database on following case : Windows 7 x64, mingw64 5.4 : gcc -s -static -DSQLITE_OMIT_AUTOVACUUM=1 shell.c sqlite3.c -o sqlite3.exe using CLI (compiled with SQLITE_OMIT_AUTOVACUUM=1) : .open

Re: [sqlite] SQLite3 on Windows

2017-10-10 Thread Dominique Devienne
On Tue, Oct 10, 2017 at 11:49 AM, Phoenix wrote: > I've downloaded the dll-win32 version of SQLite3 and have a couple of > questions. > > 1) Does sqlite3.exe require the .dll file or is it stand-alone? > > 2) Does the .dll need to be in a specific folder or is it okay

[sqlite] SQLite3 on Windows

2017-10-10 Thread Phoenix
I've downloaded the dll-win32 version of SQLite3 and have a couple of questions. 1) Does sqlite3.exe require the .dll file or is it stand-alone? 2) Does the .dll need to be in a specific folder or is it okay if the folder is listed in my PATH? ___