Re: [sqlite] Application statically linked with sqlite3.6 creates sqlite2.1 files

2014-01-23 Thread Teg
Hello Joachim, If you run it in the debugger, break it then look at the loaded modules. That'll tell you if the Sqlite dll got loaded somehow. I'd suspect some other part of the program might be loading the DLL manually and hooking the function calls. You could load DLL through ordinals

Re: [sqlite] Application statically linked with sqlite3.6 creates sqlite2.1 files

2014-01-23 Thread Joachim Bürmann
Hello Simon, thank you for your fast response. > On 23 Jan 2014, at 1:58pm, Joachim Bürmann wrote: > > > On a certain customer system (Windows7 64bit) the application cannot > > read the example project files (created with sqlite3.6 library). And > > when the user stores

Re: [sqlite] Application statically linked with sqlite3.6 creates sqlite2.1 files

2014-01-23 Thread Simon Slavin
On 23 Jan 2014, at 1:58pm, Joachim Bürmann wrote: > On a certain customer system (Windows7 64bit) the application cannot > read the example project files (created with sqlite3.6 library). And > when the user stores his own settings in a new project, the project file > is

[sqlite] Application statically linked with sqlite3.6 creates sqlite2.1 files

2014-01-23 Thread Joachim Bürmann
Hello all, I'm very confused about a strange case. Maybe someone can lighten me up. We have an application (a serial analyzer) which stores its project settings in a sqlite3 database file. Our application is statically linked with sqlite3.6 (build from the sources and with SQLITE_THREADSAFE=1).