Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread andy
To make the dll, I could not get the dllwrap to work. Based on: http://www.neuro.gatech.edu/users/cwilson/cygutils/dll-stuff/README I used this script to create the dll. #!/bin/sh gcc -mno-cygwin -Wl,--base-file,base.tmp \ -mdll -Wl,-e,[EMAIL PROTECTED] \ -o sqlite3.dll *.o -L/lib/mingw -lmsvcr

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread andy
Chris Ulliott wrote: Andy! FANTASTIC JOB! Thank you! Could you also make the source available please and tell me what changes you made? In the future if a new version comes out, it may not include your change and I need it! I would hate to upgrade and loose your change... Thanks again, Great

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread Chris Ulliott
Andy! FANTASTIC JOB! Thank you! Could you also make the source available please and tell me what changes you made? In the future if a new version comes out, it may not include your change and I need it! I would hate to upgrade and loose your change... Thanks again, Great work! Chris >Waho

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread Doug Currie
>> the DLL does not export sqlite3_exec > I noticed the sqlite3.def was also missing sqlite3_changes, so I added > it too. All the C functions listed in the capi3ref are now in the sqlite3.def file in cvs. e - To unsubscr

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread andy
Chris Ulliott wrote: Hi All, I have downloaded from the downloads page the DLL (Sqlite.dll) for Windows. I have written some code using the API and everything was going great until I needed to do an execute and it came to my attention that the DLL does not export sqlite3_exec Does anybody have

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread Chris Ulliott
Hi Richard Unfortionatly there is no link for a Compiled Binary (win 32) for version 2.x on the downloads page otherwise I would be using it. Thanks for replying. Chris Richard Boehme wrote: The regular sqlite.dll should be the 2.X release, not the 3 release, and therefore won't expor

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread andy
Chris Ulliott wrote: Hi All, I have downloaded from the downloads page the DLL (Sqlite.dll) for Windows. I have written some code using the API and everything was going great until I needed to do an execute and it came to my attention that the DLL does not export sqlite3_exec Does anybody have

Re: [sqlite] SQLite and Windows 2k

2004-06-24 Thread Richard Boehme
The regular sqlite.dll should be the 2.X release, not the 3 release, and therefore won't export sqlite3_exec, but will export sqlite_exec. As for the other, I haven't played around with sqlite3 much as I'm in the middle of a project, but I intend to in a couple of days. Thank you. Richard Boehm

[sqlite] SQLite and Windows 2k

2004-06-24 Thread Chris Ulliott
Hi All, I have downloaded from the downloads page the DLL (Sqlite.dll) for Windows. I have written some code using the API and everything was going great until I needed to do an execute and it came to my attention that the DLL does not export sqlite3_exec Does anybody have a Win32 DLL of SQLi