Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Kees Nuyt
On Fri, 12 Sep 2014 23:23:39 +0100, Simon Slavin wrote: > >On 12 Sep 2014, at 10:33pm, Kees Nuyt wrote: > >> Sure, it's all available at >> https://system.data.sqlite.org/ >> >> I think the material there covers most of the questions. > >So the appropriate thing to do is post a pointer to > >

Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Joe Mistachkin
Simon Slavin wrote: > > So the appropriate thing to do is post a pointer to > > > > ? That answers the questions about what to install, where to find it and how to install it ? > The FAQ (your link) and the download page (li

Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Simon Slavin
On 12 Sep 2014, at 10:33pm, Kees Nuyt wrote: > Sure, it's all available at > https://system.data.sqlite.org/ > > I think the material there covers most of the questions. So the appropriate thing to do is post a pointer to ?

Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Kees Nuyt
On Fri, 12 Sep 2014 16:41:40 +0100, Simon Slavin wrote: > On 12 Sep 2014, at 3:44pm, > Drago, William @ MWG - NARDAEAST > wrote: > > It seems like a lot of people are unaware of > > System.Data.Sqlite. This is understandable since most people on > > this list are C programmers not .NET/C#/VB

Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Simon Slavin
On 12 Sep 2014, at 3:44pm, Drago, William @ MWG - NARDAEAST wrote: > It seems like a lot of people are unaware of System.Data.Sqlite. This is > understandable since most people on this list are C programmers not > .NET/C#/VB developers, but this is the support list for System.Data.Sqlite as

Re: [sqlite] Reinstalling My Build Environment

2014-09-12 Thread Drago, William @ MWG - NARDAEAST
On Behalf Of Joe Mistachkin > Sent: Thursday, September 11, 2014 11:19 PM > To: 'General Discussion of SQLite Database' > Subject: Re: [sqlite] Reinstalling My Build Environment > > > I assume that you did not see the response I sent earlier? > > http://www.mail-

Re: [sqlite] Reinstalling My Build Environment

2014-09-11 Thread Joe Mistachkin
I assume that you did not see the response I sent earlier? http://www.mail-archive.com/sqlite-users%40sqlite.org/msg85999.html -- Joe Mistachkin ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listi

Re: [sqlite] Reinstalling My Build Environment

2014-09-11 Thread Drago, William @ MWG - NARDAEAST
> Please help me. At this point, I'm desperate for an installation where > I can copy the compiled files from the bin directory to a clean machine > and have it run. I use VS2013, but I don't use EF6, so this may not work for you, but maybe it will help in some way anyway. Based on what you de

Re: [sqlite] Reinstalling My Build Environment

2014-09-11 Thread Joe Mistachkin
Paul Bainter wrote: > > SQLite is a great database, but I've had nothing but problems deploying it > to a clean machine. There is supposed to be nothing extra to do when moving > the files from the bin directory to the target machine, but then I hear > rumblings about an unknown missing C++ redist

Re: [sqlite] Reinstalling My Build Environment

2014-09-10 Thread Stephen Chrzanowski
I've run into this kind of issue with another IDE, not dealing with SQLite. The issue came down to package/code/something-or-other that was once upon a time on an old installation of the IDE that I ported in then, but now, after a fresh install of the same IDE, it wouldn't work. My only resolutio

Re: [sqlite] Reinstalling My Build Environment

2014-09-10 Thread Teg
Hello Paul, What programming language are you using to devel with? Using C++, I "deploy" sqlite by building the lib and static linking it into my program. No DLL's or install is needed. Sounds like you're doing something significantly more complicated than that though. C Wednesday, Septemb

Re: [sqlite] Reinstalling My Build Environment

2014-09-10 Thread Simon Slavin
On 11 Sep 2014, at 12:36am, Paul Bainter wrote: > SQLite is a great database, but I've had nothing but problems deploying it > to a clean machine. Maybe I can help a little by explaining something. SQLite is C source code. It's available most conveniently as one .h file and one .c file and