[sqlite] Installation_Procedure

2014-10-30 Thread Ayub Mytheen
Hi Team, I tried to configure SQLLite Setting in my laptop.i extract two zip file from your link. i tried to set path environment variable .We cant to configure to sqllite.if any body can help to guide how to configure sqllite. Thanks Iyub Mytheen

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread Keith Medcalf
Ah ... It only affects dotNOT and has nothing to do with runtime support or OS API Levels. >-Original Message- >From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users- >boun...@sqlite.org] On Behalf Of Billy Huynh >Sent: Thursday, 30 October, 2014 15:47 >To: General Discussion of

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread Billy Huynh
Hi Keith, not at all. See this link. Maybe you have the picture. http://stackoverflow.com/questions/15453629/use-visual-studio-2012-and-compile-with-older-platform-toolset Billy. From: sqlite-users-boun...@sqlite.org on

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread Keith Medcalf
Does this set the _WIN32_WINNT and WINVER so the correct API set are included by windows.h / winnt.h? // Values of WINVER and _WIN32_WINNT for various minimum levels of Win32 Compatability // // WIN6 0x0600 W2K 0x0500 NT4 0x0400 // VISTA0x0600 WXP 0x0501

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread Billy Huynh
Thanks Dave, Billy From: sqlite-users-boun...@sqlite.org on behalf of dave Sent: Thursday, October 30, 2014 1:02 PM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] New kids on block

Re: [sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Scott Robison
You're in the right place, it just wasn't obvious to Simon (or me) from the previously sent data that it was a C#/.NET question vs a C API question. On Thu, Oct 30, 2014 at 11:46 AM, Mike McWhinney wrote: > I thought the SQLite mailing list included traffic that discussed

Re: [sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Joe Mistachkin
Mike McWhinney > > I thought the SQLite mailing list included traffic that discussed System.Data.SQLite > Yes, it does. This mailing list *IS* the appropriate place to for discussion of System.Data.SQLite. -- Joe Mistachkin ___ sqlite-users mailing

Re: [sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Mike McWhinney
I thought the SQLite mailing list included traffic that discussed System.Data.SQLite I am not sure if there are any forums specifically for the ADO .NET provider and support. I will google to see if I can find the proper reference. Mike On Thursday, October 30, 2014 12:00 PM, Simon Slavin

Re: [sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Joe Mistachkin
Mike McWhinney wrote: > > I have continued to receive the locking erros. The latest connection string > I have as follows: > > public static string OMconnectionString = "URI=file:oslermedicine.db; busy > timeout=1; Pooling=True; Max Pool Size=100;"; > In the connection string, please use

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread dave
Just those two. If you use the v110_xp, your code can run on XP and up. 'Can' meaning, assuming you yourself do not use apis specific to Vista/7/8 in your own code, of course. The 'toolset' change alters the version of the standard libs linked in, and that choice uses a version that avoids the

Re: [sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Simon Slavin
On 30 Oct 2014, at 4:13pm, Mike McWhinney wrote: > I have continued to receive the locking erros. The latest connection string I > have as follows: > > public static string OMconnectionString = "URI=file:oslermedicine.db; busy > timeout=1; Pooling=True; Max Pool

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread Billy Huynh
Thanks Dave, I have update 3 (there is no service pack anymore with vs2012) installed. I only see two items int the Platform toolset. the 'Visual Studio 2012 - Windows XP (v110_xp)' which is the current one we set. The other one is 'Vs2012 (v110)' this will only support windows Vista and up.

[sqlite] Fw: Database is locked exceptions

2014-10-30 Thread Mike McWhinney
I have continued to receive the locking erros. The latest connection string I have as follows: public static string OMconnectionString = "URI=file:oslermedicine.db; busy timeout=1; Pooling=True; Max Pool Size=100;"; Are there any other parameters that will increase the timeout when

Re: [sqlite] New kids on block the SQLite Master Suite.

2014-10-30 Thread dave
Actually, you don't have to install all those other versions. Merely do as I outlined below with your existing vs2012 and yo will be fine with what you have now. I do this on a near daily basis. > -Original Message- > From: sqlite-users-boun...@sqlite.org >