Re: [sqlite] Library run-time error

2012-01-20 Thread Jens Frederich
On Fri, Jan 20, 2012 at 12:40 PM, ASURADA wrote: > You have missing a point. > I need 64bit static library. so I have to compile the sqlite. > Why you need a static library? For testing, you can direct embed the Sqlite source in the test app.                              

Re: [sqlite] Library run-time error

2012-01-20 Thread Jens Frederich
On Fri, Jan 20, 2012 at 10:21 AM, ASURADA wrote: > Solution > + SQLite3 (Dynamic Library) > + SQLite3Static (Static Library) > + SQLite3Test Please simplify the setup. Please add sqlite3.c, sqlite3.h, sqlite3ext.h direct to SQLite3Test project. Remove the project SQLite3 and

Re: [sqlite] Library run-time error

2012-01-20 Thread Jens Frederich
Can you describe your project structure. One Visual Studio test project with sqlite3.c sqlite3.h inside or two separate projects?                               Jens ___ sqlite-users mailing list sqlite-users@sqlite.org

Re: [sqlite] Library run-time error

2012-01-19 Thread Jens Frederich
On Thu, Jan 19, 2012 at 11:40 AM, ASURADA wrote: > > Error Message > == > Unhandled exception at 0x in SQLite3Test.exe: 0xC005: Access > violation reading location 0x. Hi, has you build a debug version of your test app and library?

Re: [sqlite] 3.7.9 amalgamation file in VS2005

2011-12-29 Thread Jens Frederich
ystems > > > From: sqlite-users-boun...@sqlite.org [sqlite-users-boun...@sqlite.org] on > behalf of Jens Frederich [jfreder...@gmail.com] > Sent: Thursday, December 29, 2011 12:47 AM > To: General Discussion of SQLite Database > Subject: EXT :Re: [sq

Re: [sqlite] 3.7.9 amalgamation file in VS2005

2011-12-29 Thread Jens Frederich
You can take WinDbg to step through the amalgamation sqlite3.c source file. It works very well. Jens On Thu, Dec 29, 2011 at 8:18 AM, Roger Binns <rog...@rogerbinns.com> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 28/12/11 22:47, Jens Fred

Re: [sqlite] 3.7.9 amalgamation file in VS2005

2011-12-28 Thread Jens Frederich
Hi, I duplicated your problem on C++ 2011 Professional. Source code stepping doesn't work. My solution is to remove all comment lines. Jens On Wed, Dec 28, 2011 at 2:09 PM, Teg wrote: > > Yeah, I was wrong. Color syntax highlighting does work. It's single > stepping into

Re: [sqlite] [shell] utf-8 bug

2011-12-27 Thread Jens Frederich
Thank you! What a mess... On Tue, Dec 27, 2011 at 9:00 PM, Kevin Benson <kevin.m.ben...@gmail.com>wrote: > On 12/27/11, Jens Frederich <jfreder...@gmail.com> wrote: > > The sqlite3 command line app doesn't write the string correctly to the > > database file. It uses

Re: [sqlite] [shell] utf-8 bug

2011-12-27 Thread Jens Frederich
gt; select length('füchsen'); > aborts > > > > > > Michael D. Black > > Senior Scientist > > Advanced Analytics Directorate > > Advanced GEOINT Solutions Operating Unit > > Northrop Grumman Information Systems > >

[sqlite] [shell] utf-8 bug

2011-12-26 Thread Jens Frederich
Hi all, I believe there is a bug in shell tool on Windows. I've tried to store utf-8 encoded literals in my test db. Do the following to reproduce the issue: 1. Open a Windows Console (cmd.exe) 2. chcp 65001 # change cmd.exe code page from 437(OEM) to utf-8 3. Run the shell > sqlite3.exe