Re: [sqlite] Complile and connecting to SQLite

2006-05-02 Thread Aaron Jones
[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 9:49 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Complile and connecting to SQLite there is no dll file in the sqlite source On 02/05/06, Eric Bohlman <[EMAIL PROTECTED]> wrote: > > Aaron Jones wrote: > > Windows XP, don't k

RE: [sqlite] Complile and connecting to SQLite

2006-05-02 Thread Doug Nebeker
://www.sqlite.org/download.html There are other downloads there that might be helpful too so look around. - Doug -Original Message- From: Aaron Jones [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 9:49 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Complile and connecting

Re: [sqlite] Complile and connecting to SQLite

2006-05-02 Thread Dennis Cote
Aaron Jones wrote: there is no dll file in the sqlite source Aaron, To use SQLite on Windows you need to download 3 separate files. http://www.sqlite.org/sqlite-3_3_5.zip contains a command line shell statically linked to the sqlite library. You can use it to create, open, test sqlite

Re: [sqlite] Complile and connecting to SQLite

2006-05-02 Thread Aaron Jones
there is no dll file in the sqlite source On 02/05/06, Eric Bohlman <[EMAIL PROTECTED]> wrote: Aaron Jones wrote: > Windows XP, don't know what compiler to use. MinGW and all the common versions of Visual Studio work. > > I am creating a GUI to SQLite, so need my interface to connect to

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread Eric Bohlman
Aaron Jones wrote: Windows XP, don't know what compiler to use. MinGW and all the common versions of Visual Studio work. I am creating a GUI to SQLite, so need my interface to connect to SQLite, and wanted to know what it connected to, the source code or the exe file. SQLite is an

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread John Stanton
You cannot go wrong by using Mingw. The package with the Dev-Cpp IDE works well and compiles Sqlite without problems. JS Aaron Jones wrote: Windows XP, don't know what compiler to use. I am creating a GUI to SQLite, so need my interface to connect to SQLite, and wanted to know what it

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread John Stanton
To compile just read the instructions with thye source distribution. Sqlite doesn't connect, it is a library which you link into your application. JS Aaron Jones wrote: Hi, I have to questions I would like some help on please 1. How do you compile SQLite from the source code and 2. How

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread John Newby
There are wrappers here to connect to SQLite from loads of different languages and toolkits :- http://www.sqlite.org/cvstrac/wiki?p=SqliteWrappers On 02/05/06, Aaron Jones <[EMAIL PROTECTED]> wrote: Windows XP, don't know what compiler to use. I am creating a GUI to SQLite, so need my

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread Aaron Jones
Windows XP, don't know what compiler to use. I am creating a GUI to SQLite, so need my interface to connect to SQLite, and wanted to know what it connected to, the source code or the exe file. On 01/05/06, Gerry Snyder <[EMAIL PROTECTED]> wrote: Aaron Jones wrote: > Hi, I have to questions I

Re: [sqlite] Complile and connecting to SQLite

2006-05-01 Thread Gerry Snyder
Aaron Jones wrote: Hi, I have to questions I would like some help on please 1. How do you compile SQLite from the source code What OS, what compiler, ...? And why do you need to compile? Why not use a precompiled executable? and 2. How do I connect to SQLite? Do I connect to the source