Re: [sqlite] VC++ and SQLite

2012-11-13 Thread noel.frankinet
-Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Noel Frankinet Sent: Tuesday, November 13, 2012 9:19 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite why would you need stdafx.h for sqlite ? what

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread John Drescher
On Tue, Nov 13, 2012 at 10:29 AM, Arbol One wrote: > Further inspection showed that there is a macro that is added, and not the > stdafx.h file name, the macro is > '%(PrecompiledHeaderFile);%(ForcedIncludeFiles)'. Nevertheless, VS10 still > complains with the following

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arbol One
-users-boun...@sqlite.org] On Behalf Of Michael Schlenker Sent: Tuesday, November 13, 2012 8:57 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite Am 13.11.2012 14:33, schrieb Arbol One: > I would also keep this feature, however, in the case of SQLite3 > amalga

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Teg
- AO> From: sqlite-users-boun...@sqlite.org AO> [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of John Drescher AO> Sent: Monday, November 12, 2012 7:44 PM AO> To: General Discussion of SQLite Database AO> Subject: Re: [sqlite] VC++ and SQLite AO> On Mon, Nov 12, 2012 at 1:52 PM, Doug

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arbol One
-Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of John Drescher Sent: Tuesday, November 13, 2012 9:57 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite On Tue, Nov 13, 2012 at 8:51 AM, Arbol One <ar

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread John Drescher
On Tue, Nov 13, 2012 at 8:51 AM, Arbol One wrote: > Following the advice of MSN: > Open the project's Property Pages dialog box. For details, see Setting Visual > C++ Project Properties. > Click the C/C++ folder. > Click the Advanced property page. > Modify the Force Includes

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arjen Markus
On Tue, 13 Nov 2012 09:51:01 -0500 Arbol One wrote: Following the advice of MSN: Open the project's Property Pages dialog box. For details, see Setting Visual C++ Project Properties. Click the C/C++ folder. Click the Advanced property page. Modify the Force Includes

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arbol One
, November 13, 2012 9:19 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite why would you need stdafx.h for sqlite ? what is the added benefit ? On 13 November 2012 14:57, Michael Schlenker <m...@contact.de> wrote: > Am 13.11.2012 14:33, schrieb Arbol O

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arbol One
..@sqlite.org] On Behalf Of Michael Schlenker Sent: Tuesday, November 13, 2012 8:57 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite Am 13.11.2012 14:33, schrieb Arbol One: > I would also keep this feature, however, in the case of SQLite3 > amalgamation, I

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Noel Frankinet
but stupidity is no handicap Eat > > Kosher > > > > -Original Message- From: sqlite-users-boun...@sqlite.org > > [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of John Drescher > > Sent: Monday, November 12, 2012 7:44 PM To: General Discussion of > > S

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Michael Schlenker
To: General Discussion of > SQLite Database Subject: Re: [sqlite] VC++ and SQLite > > On Mon, Nov 12, 2012 at 1:52 PM, Doug Nebeker <pa...@poweradmin.com> > wrote: >> You might be surprised at the speed increase you see in compile >> time if you've got large projects

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Noel Frankinet
dicap > Eat Kosher > > -Original Message- > From: sqlite-users-boun...@sqlite.org [mailto: > sqlite-users-boun...@sqlite.org] On Behalf Of John Drescher > Sent: Monday, November 12, 2012 7:44 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] VC++

Re: [sqlite] VC++ and SQLite

2012-11-13 Thread Arbol One
PM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite On Mon, Nov 12, 2012 at 1:52 PM, Doug Nebeker <pa...@poweradmin.com> wrote: > You might be surprised at the speed increase you see in compile time > if you've got large projects. The time isn't lost

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread John Drescher
On Mon, Nov 12, 2012 at 1:52 PM, Doug Nebeker wrote: > You might be surprised at the speed increase you see in compile time if > you've got large projects. The time isn't lost to CPU as much, but disk I/O > time adds up when hitting many hundreds of small (header) files

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread Doug Nebeker
...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Rob Richardson Sent: Monday, November 12, 2012 1:33 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite I always turn pre-compiled headers off for every VC++ project. In my opinion, they are artifacts from

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread Rob Richardson
-Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Adam DeVita Sent: Monday, November 12, 2012 10:49 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] VC++ and SQLite It isn't VS2010 specific. Even going back to VS6 writing

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread Adam DeVita
It isn't VS2010 specific. Even going back to VS6 writing your own C++ wrapper and including the.c file you had to tell it to not use precompiled headers for that file. (Both Debug and Release builds) You should tell VS that this file will not ever be using precompiled headers. On VS2012

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread John Drescher
>> I know this question is not a SQLite question, but I am hoping that >> someone here has had a similar experience and/or can point me to the right >> place to ask this question. >> >> After years or using Code::Blocks and Dev-Cpp, I have recently installed >> Visual Studio 10 Express; it is the

Re: [sqlite] VC++ and SQLite

2012-11-12 Thread Noel Frankinet
Remove "use precompiled header" from your configuration. On 10 November 2012 14:11, Arbol One wrote: > I know this question is not a SQLite question, but I am hoping that > someone here has had a similar experience and/or can point me to the right > place to ask this

[sqlite] VC++ and SQLite

2012-11-10 Thread Arbol One
I know this question is not a SQLite question, but I am hoping that someone here has had a similar experience and/or can point me to the right place to ask this question. After years or using Code::Blocks and Dev-Cpp, I have recently installed Visual Studio 10 Express; it is the first time I