Re: [sqlite] Need JDBC driver for SQLite

2013-04-06 Thread Walter Hurry
On Thu, 04 Apr 2013 11:30:51 +0530, Vinoth raj wrote: > Hello All, > > I was looking for an authoritative source from where I can get the > driver (jar) for SQLite. SQLite web site do not have any mention for > Java support. > > Can anyone help in getting the JDBC driver for SQLite (from

Re: [sqlite] Unhandled Exception: System.TypeInitializationException

2013-04-06 Thread Don V Nielsen
TY sir. I'm going to be a much smarter developer when this is all said and done. I have lots to learn. Is everything cool with sqlite and VS2012? I'm in the process of installing VS2012/Express on my 64bit laptop in an effort to get my education started. On Sat, Apr 6, 2013 at 4:18 AM, Bernd

Re: [sqlite] SQL Logic error or missing database

2013-04-06 Thread ibrahim
On 05.04.2013 17:01, Dan Kennedy wrote: On 04/05/2013 09:08 PM, Rob Collie wrote: Yeap, I'm on Visual Studio 2012. I've created a console app: sqlite3 *oDatabase; int returnValue; returnValue = sqlite3_open_v2("file://C:/Newfolder/testing.db", , SQLITE_OPEN_CREATE, NULL); if

Re: [sqlite] SQL Logic error or missing database

2013-04-06 Thread ibrahim
On 05.04.2013 16:47, Rob Collie wrote: sqlite3_open_v2("file://C:/Newfolder/testing.db", > > > >& oDatabase, SQLITE_OPEN_CREATE, NULL); Can you try : returnValue = sqlite3_open_v2 ("C:\\Newfolder\\testing.db", , SQLITE_OPEN_CREATE, NULL) ; Use double backslash also after "file://"

Re: [sqlite] SQL Logic error or missing database

2013-04-06 Thread ibrahim
On 05.04.2013 14:54, Rob Collie wrote: Hello there, For my sins, I'm trying to create a library allowing our legacy fortran code to work with SQL. Calling this from fortran... CALL EXECUTESQL('dbTest'//CHAR(0), cQuery, iReturnValue) ...runs the following code, and yet the error returned is

Re: [sqlite] Unhandled Exception: System.TypeInitializationException

2013-04-06 Thread Bernd
Am 05.04.2013 22:19, schrieb Don V Nielsen: Thanks for reading. I am getting the following error moving a 32 bit application from Windows Server 2003 to WS2008. This is a straight copy from one computer to another. It runs fine on WS2003 and not so good on WS2008. The application was