Re: [sqlite] Building SQLite DLL with Visual Studio 2015

2019-01-21 Thread Keith Medcalf
out anticipated traffic volume. >-Original Message- >From: sqlite-users [mailto:sqlite-users- >boun...@mailinglists.sqlite.org] On Behalf Of John Smith >Sent: Monday, 21 January, 2019 03:16 >To: SQLite mailing list >Subject: [sqlite] Building SQLite DLL with Visual Studio 20

Re: [sqlite] Building SQLite DLL with Visual Studio 2015

2019-01-21 Thread Chris Locke
Just curious as to why you wouldn't choose option #2 - as that's what I use with my VB .NET applications, which work quite well. Just distribute the .exe, then the two SQLite DLLs (well, three technically, as there are two versions of the interop.dll) Thanks, Chris On Mon, Jan 21, 2019 at 4:19

Re: [sqlite] Building SQLite DLL with Visual Studio 2015

2019-01-21 Thread Simon Slavin
On 21 Jan 2019, at 11:16am, J Decker wrote: > 4. Statically linked to and compiled with your datalayer code. What he said. Also, you should be using the 'Amalgamation' download to do this, unless you need some compiler switches which are not supported by that source-set. Simon.

Re: [sqlite] Building SQLite DLL with Visual Studio 2015

2019-01-21 Thread J Decker
On Mon, Jan 21, 2019 at 2:16 AM John Smith wrote: > Hi, > > > I need to build a data-layer DLL for a large project. > > My project is 64-bit built with Visual-Studio 2015. > > I want to ask about what would be the preferred way to build SQLite: > > 1. Build SQLite code as a separate DLL and use

[sqlite] Building SQLite DLL with Visual Studio 2015

2019-01-21 Thread John Smith
Hi, I need to build a data-layer DLL for a large project. My project is 64-bit built with Visual-Studio 2015. I want to ask about what would be the preferred way to build SQLite: 1. Build SQLite code as a separate DLL and use it from my data-layer DLL, 2. Use the ready-built binary of

[sqlite] Building sqlite-autoconf-3250000 with enable-rtree and enable-session

2018-09-17 Thread death lock
I'm building on Debian10 : warning: ISO C99 requires whitespace after the macro name : error: missing binary operator before token "1" sqlite3.c:308:5: note: in expansion of macro ‘SQLITE_ENABLE_RTREE’ * 'space' missing after $BUILD_CFLAGS --- a/configure 2018-09-15 15:36:05.0 +0200

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Bob Friesenhahn
On Thu, 21 Jun 2018, Dennis Clarke wrote: Running "gmake" I see a few oddball warnings again : "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) "sqlite3.c", line 52491: warning: statement not reached (E_STATEMENT_NOT_REACHED)

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Warren Young
On Jun 21, 2018, at 2:53 PM, Dennis Clarke wrote: > > n0$ diff Makefile.backup Makefile > 70c70 > < TLIBS = -lz $(LIBS) > --- > > TLIBS = -lz -lrt $(LIBS) > n0$ Actually, you want this: Index: configure.ac == --- configure.ac

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Dennis Clarke
On 06/21/2018 04:53 PM, Bob Friesenhahn wrote: On Thu, 21 Jun 2018, Richard Hipp wrote: . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) According to my manpage for localtime_r(), the only header file required is , which

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Bob Friesenhahn
On Thu, 21 Jun 2018, Richard Hipp wrote: . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) According to my manpage for localtime_r(), the only header file required is , which you can clearly see is found on line 20342, above

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Warren Young
On Jun 21, 2018, at 5:28 AM, Dennis Clarke wrote: > > So I then read ext/async/README.txt and took a look around whereupon > I see these use "sched_yield" : > > ./ext/async/sqlite3async.c > ./src/test4.c > ./src/test7.c > ./test/crashtest1.c > ./test/threadtest1.c > ./test/threadtest2.c >

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Dennis Clarke
On 06/21/2018 12:06 PM, Richard Hipp wrote: On 6/21/18, Dennis Clarke wrote: Seems to compile fine and yet "gmake test" failed with a less then helpful "Error 2" : . . . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED)

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Richard Hipp
On 6/21/18, Dennis Clarke wrote: > > Seems to compile fine and yet "gmake test" failed with a less > then helpful "Error 2" : > > > . > . > . > sqlite3.c: > "sqlite3.c", line 20826: warning: implicit function declaration: > localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) According to my manpage for

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Dennis Clarke
On 06/21/2018 10:04 AM, Dan Kennedy wrote: On 06/21/2018 02:34 PM, Dennis Clarke wrote: Seems to compile fine and yet "gmake test" failed with a less then helpful "Error 2" : . . . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r

Re: [sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Dan Kennedy
On 06/21/2018 02:34 PM, Dennis Clarke wrote: Seems to compile fine and yet "gmake test" failed with a less then helpful "Error 2" : . . . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) "sqlite3.c", line 52491: warning:

[sqlite] building sqlite-src-3240000 I was surprised to see "make test" fail

2018-06-21 Thread Dennis Clarke
Seems to compile fine and yet "gmake test" failed with a less then helpful "Error 2" : . . . sqlite3.c: "sqlite3.c", line 20826: warning: implicit function declaration: localtime_r (E_NO_IMPLICIT_DECL_ALLOWED) "sqlite3.c", line 52491: warning: statement not reached (E_STATEMENT_NOT_REACHED)

[sqlite] Building SQLite autoconf on SCO 5.0.7v

2015-09-23 Thread David Nadle
I ran into some trouble building sqlite-autoconf-3081101 on SCO 5.0.7v with GNU tools. I'm not so good with autoconf scripts, but I can tell you what changes had to be made to sqlite3.c and the Makefile to get a successful build. I hope this can get into a future configure script somehow... 1.

[sqlite] building SQLite DLL with Visual C++

2015-04-28 Thread Jay Smith
lists.sqlite.org] On Behalf Of Drago, > William @ CSG - NARDA-MITEQ > Sent: Monday, April 27, 2015 8:38 AM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] building SQLite DLL with Visual C++ > > I'm afraid I can't help you with that, Jay. I don't use data bindings an

[sqlite] building SQLite DLL with Visual C++

2015-04-27 Thread Drago, William @ CSG - NARDA-MITEQ
sqlite- > users-bounces at mailinglists.sqlite.org] On Behalf Of Jay Smith > Sent: Sunday, April 26, 2015 3:44 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] building SQLite DLL with Visual C++ > > Thanks Bill > > That worked > > BUT > > In

[sqlite] building SQLite DLL with Visual C++

2015-04-27 Thread Steven M. McNeese
, April 27, 2015 8:38 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] building SQLite DLL with Visual C++ I'm afraid I can't help you with that, Jay. I don't use data bindings and all that other built-in visual studio db stuff because performance is slow and it's hard to maintain. I

[sqlite] building SQLite DLL with Visual C++

2015-04-26 Thread Jay Smith
od luck, > > -- > Bill Drago > Senior Engineer > L3 Narda-MITEQ > 435 Moreland Road > Hauppauge, NY 11788 > 631-272-5947 / William.Drago at L-3COM.com > > > > > -Original Message- > > From: sqlite-users-bounces at mailinglists.sqlite.org [mailto:sqlite- > >

[sqlite] building SQLite DLL with Visual C++

2015-04-25 Thread Drago, William @ CSG - NARDA-MITEQ
e-users-bounces at mailinglists.sqlite.org [mailto:sqlite- > users-bounces at mailinglists.sqlite.org] On Behalf Of Jay Smith > Sent: Saturday, April 25, 2015 3:50 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] building SQLite DLL with Visual C++ > > Hi Bill > &

[sqlite] building SQLite DLL with Visual C++

2015-04-25 Thread Jay Smith
To: General Discussion of SQLite Database > > Subject: Re: [sqlite] building SQLite DLL with Visual C++ > > > > Thank you Adam for responding to my post. I have the windows binaries > > downloaded. > > > > At this point I am just following the instructions in the book. And

[sqlite] building SQLite DLL with Visual C++

2015-04-24 Thread Jay Smith
n of SQLite Database > > Subject: Re: [sqlite] building SQLite DLL with Visual C++ > > > > Thank you Adam for responding to my post. I have the windows binaries > > downloaded. > > > > At this point I am just following the instructions in the book. And I > &

[sqlite] building SQLite DLL with Visual C++

2015-04-24 Thread Jay Smith
Thanks Adam I will take a look Jay On Thu, Apr 23, 2015 at 4:19 PM, Adam Devita wrote: > Good day, > I don't work in VB, so I can't help you in specifics on that. A quick > search on a search engine pops up some videos on how to use sqlite in > a Visual Basic project. The archives of this

[sqlite] building SQLite DLL with Visual C++

2015-04-23 Thread Drago, William @ CSG - NARDA-MITEQ
> -Original Message- > From: sqlite-users-bounces at mailinglists.sqlite.org [mailto:sqlite- > users-bounces at mailinglists.sqlite.org] On Behalf Of Jay Smith > Sent: Thursday, April 23, 2015 3:47 PM > To: General Discussion of SQLite Database > Subject: Re: [sqlite] b

[sqlite] building SQLite DLL with Visual C++

2015-04-23 Thread Adam Devita
Good day, I don't work in VB, so I can't help you in specifics on that. A quick search on a search engine pops up some videos on how to use sqlite in a Visual Basic project. The archives of this list have a lot of questions where people are introduced to open, prep sql, (bind), step, fetch,

[sqlite] building SQLite DLL with Visual C++

2015-04-23 Thread Jay Smith
Thanks Igor the only response I got to the first message was "it has been bounced" On Wed, Apr 22, 2015 at 9:51 AM, Igor Tandetnik wrote: > On 4/21/2015 11:01 AM, Jay Smith wrote: > >> Before I sent the last message I had signed up to become a user. >> My previous message was bounced. WHY >>

[sqlite] building SQLite DLL with Visual C++

2015-04-23 Thread Jay Smith
Thank you Adam for responding to my post. I have the windows binaries downloaded. At this point I am just following the instructions in the book. And I really am not sure what I need the dll for. Here's the scenario. I have created a program in vb2012. The program stores less than 20 fields of

[sqlite] building SQLite DLL with Visual C++

2015-04-22 Thread Adam Devita
Good day, Why are you compiling a dll instead of using the pre-compiled windows binaries at http://www.sqlite.org/download.html? Are you adding some sort of extra wrapper? Why are you not adding the amalgamated c source in your project (turn off use pre-compiled headers for that file) ? If

[sqlite] building SQLite DLL with Visual C++

2015-04-22 Thread Igor Tandetnik
On 4/21/2015 11:01 AM, Jay Smith wrote: > Before I sent the last message I had signed up to become a user. > My previous message was bounced. WHY I, for one, have received both your original and this new message. -- Igor Tandetnik

[sqlite] building SQLite DLL with Visual C++

2015-04-21 Thread Jay Smith
Dear sir Before I sent the last message I had signed up to become a user. My previous message was bounced. WHY copy of previous message: I am new to SQLite. I have a book I am learning from and I am a novice. I have a fairly good handle on SQL I want to include SQLite in my VS2012 program. I

[sqlite] building SQLite DLL with Visual C++

2015-04-20 Thread Jay Smith
I am new to SQLite. I have a book I am learning from and I am a novice. I have a fairly good handle on SQL I want to include SQLite in my VS2012 program. I am attempting to run " LIB /DEF:sqlite3.def " I get error This error "LIB is not recognized as an internal or external command." What am

[sqlite] Building SQLite 3.7.14.1 for OpenVMS

2012-10-31 Thread Maxim Zinal
Hello and have a good time of day! Some time ago I've posted a patch which allowed to compile and use SQLite 3.7.9 under OpenVMS operating system: http://sqlite.1065341.n5.nabble.com/Port-of-SQLite-3-7-9-to-OpenVMS-td55734.html

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Simon Slavin
On 15 Oct 2012, at 10:41pm, "Caleb A. Austin" wrote: > There is one odd part to all this > > FILE *fp; > fp = fopen("/release/sql/MYFILE.txt", "a"); > fprintf(fp, "%s\n ", "Hello World, Where there is will, there is a > way."); > fclose(fp) ; > > This works... but

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
Slavin Sent: Monday, October 15, 2012 2:33 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) On 15 Oct 2012, at 9:50pm, "Caleb A. Austin" <caus...@climet.com> wrote: > Hmm, I will try a few other locations. It

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
al Discussion of SQLite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) On 15 Oct 2012, at 9:50pm, "Caleb A. Austin" <caus...@climet.com> wrote: > Hmm, I will try a few other locations. It seems that CE does not > have a local directory t

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
the problem... Caleb Austin -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Simon Slavin Sent: Monday, October 15, 2012 2:33 PM To: General Discussion of SQLite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Simon Slavin
On 15 Oct 2012, at 9:50pm, "Caleb A. Austin" wrote: > Hmm, I will try a few other locations. It seems that CE does not have > a local directory that windows does. So the sqlite3_open(("count.db"), > ); even when run from /release/sql/ it thinks the root is the local >

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Joe Mistachkin Sent: Monday, October 15, 2012 10:55 AM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) Caleb A. Austin wrote: > > What is odd, is that i

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Joe Mistachkin
Caleb A. Austin wrote: > > What is odd, is that if I use the root folder then I don't get any > errors. Meaning if I use sqlite3_open(("count.db"), ); I get a > created db file with content. > Perhaps the other directory is actually a mount point to another file system with different

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
ileBuffers() and Win32 API details. Caleb Austin -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Joe Mistachkin Sent: Monday, October 15, 2012 10:08 AM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] Build

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Joe Mistachkin
Caleb A. Austin wrote: > > sqlite3_open(("/release/sql/count.db"), ); > > 1034: os_win.c: 32125: (50) winSync(/release/sql/count.db-journal) > -osError 0x32 > (50) ... > > ... create table fails... disk IO error That error code is ERROR_NOT_SUPPORTED, coming from winSync(), which probably

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-15 Thread Caleb A. Austin
users-boun...@sqlite.org] On Behalf Of Joe Mistachkin Sent: Friday, October 12, 2012 9:41 PM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) Caleb A. Austin wrote: > > The top file operation works, but the sqlite3_open does not...

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Joe Mistachkin
Caleb A. Austin wrote: > > The top file operation works, but the sqlite3_open does not... > > Wondering if I need to compile an option for SQLite to be using the > correct file io for WEC7 > What return code is coming back from sqlite3_open()? Can you enable logging via the

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Caleb A. Austin
Mistachkin Sent: Friday, October 12, 2012 10:39 AM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) Caleb A. Austin wrote: > > Any ideas on why the database is being placed in root and not in local? > My understanding is that Win

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Joe Mistachkin
Caleb A. Austin wrote: > > I have tried: > > sqlite3_open("/release/sql/countries.db", ); > I'm not sure if it will make a difference; however, I think Windows CE may need backslashes, not forward slashes. -- Joe Mistachkin ___ sqlite-users

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Caleb A. Austin
eone has used SQLite on Windows CE to help fix the problem. Caleb Austin -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Joe Mistachkin Sent: Friday, October 12, 2012 10:39 AM To: 'General Discussion of SQLite Database' Subject: R

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Joe Mistachkin
Caleb A. Austin wrote: > > Any ideas on why the database is being placed in root and not in local? > My understanding is that Windows CE does not support the concept of a current directory. Therefore, in order for a file to be created in a particular directory, the full path to the file must

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-12 Thread Caleb A. Austin
On Behalf Of Joe Mistachkin Sent: Thursday, October 11, 2012 12:35 AM To: 'General Discussion of SQLite Database' Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) Caleb A. Austin wrote: > > Added near line 14092: > #define HAVE_LOCALTIME_S 0 > Since the

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-11 Thread Joe Mistachkin
Caleb A. Austin wrote: > > Added near line 14092: > #define HAVE_LOCALTIME_S 0 > Since the SDK you are using does not appear to provide the localtime_s function, even though it uses MSVC and its associated CRT, this makes sense. This could be defined in the Makefile and/or project properties

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-10 Thread Caleb A. Austin
ite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) On 10 Oct 2012, at 4:44pm, Caleb A. Austin <caus...@climet.com> wrote: > Then I add the SQLite3.c and SQLite3.h to the project and include > SQLite3.h into the Hello World project. This is where I

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-10 Thread Caleb A. Austin
...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Simon Slavin Sent: Wednesday, October 10, 2012 8:52 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) On 10 Oct 2012, at 4:44pm, Caleb A. Austin <c

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-10 Thread Caleb A. Austin
[mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Simon Slavin Sent: Wednesday, October 10, 2012 8:52 AM To: General Discussion of SQLite Database Subject: Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7) On 10 Oct 2012, at 4:44pm, Caleb A. Austin <caus...@climet.com>

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-10 Thread Simon Slavin
On 10 Oct 2012, at 4:44pm, Caleb A. Austin wrote: > Then I add the SQLite3.c and SQLite3.h to the project and > include SQLite3.h into the Hello World project. This is where I get the > errors. Please make sure your compiler is set to compile '.c' files as C code, and not

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-10 Thread Caleb A. Austin
s the TI SDK for our processor, AM3517. Thanks! Caleb Austin -Original Message- From: sqlite-users-boun...@sqlite.org [mailto:sqlite-users-boun...@sqlite.org] On Behalf Of Joe Mistachkin Sent: Tuesday, October 09, 2012 10:53 PM To: 'General Discussion of SQLite Database' Subject: Re: [sql

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-09 Thread Joe Mistachkin
Caleb A. Austin wrote: > > I am using SQLITE_OS_WINCE as defined: > > #if defined(_WIN32_WCE) > # define SQLITE_OS_WINCE 1 > #else > # define SQLITE_OS_WINCE 0 > #endif > Is a special SDK being used for Windows Embedded Compact 7? What other defines are you using? Are you using the

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-09 Thread Caleb A. Austin
I am using SQLITE_OS_WINCE as defined: #if defined(_WIN32_WCE) # define SQLITE_OS_WINCE 1 #else # define SQLITE_OS_WINCE 0 #endif I have also forced #define SQLITE_OS_WINCE 1 at the top of the .c file. Would there be a basic set of define's that would build a Windows CE SQLite? I hope this

Re: [sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-09 Thread Joe Mistachkin
Caleb A. Austin wrote: > > Warning 2 warning C4013: 'localtime_s' > undefined; assuming extern returning int > What defines are you using to compile the sqlite3.c file? Are you using the defines SQLITE_OS_WIN and SQLITE_OS_WINCE? -- Joe Mistachkin

[sqlite] Building SQLite on Windows Embedded Compact 7(WEC7)

2012-10-09 Thread Caleb A. Austin
Hi All, I am working on building SQLite and I am using(from header file): #define SQLITE_VERSION"3.7.14" #define SQLITE_VERSION_NUMBER 3007014 #define SQLITE_SOURCE_ID "2012-09-03 15:42:36 c0d89d4a9752922f9e367362366efde4f1b06f2a" I am getting the following warning and

[sqlite] Building sqlite for windows in a proper way

2011-04-19 Thread jeff archer
>On Mon, Apr 18, 2011 at 8:42 AM, Kuba Nowak wrote: > >Does anyone one know how to build sqlite to get the same binary as on >download page ? > What do you use to compare the speed between the builds of SQLite? Are using debug build from VS2010?  My experience is that VS debug builds run most

Re: [sqlite] Building sqlite for windows in a proper way

2011-04-19 Thread Pavel Ivanov
> Does anyone one know how to build sqlite to get the same binary as on > download page ? Did you try to remove all those defines that you add at build time and leave only default values set inside sqlite3.c file? Pavel On Mon, Apr 18, 2011 at 8:42 AM, Kuba Nowak wrote:

[sqlite] Building sqlite for windows in a proper way

2011-04-18 Thread Kuba Nowak
Hello My problem is no matter how i build sqlite - my binary is much slower than the precompiled one on sqlite download page (about 3 - 6 times depending on the query). I am using sqlite3.h and sqlite3.c from the amalgamation source: http://www.sqlite.org/sqlite-amalgamation-3070602.zip I have

[sqlite] Building sqlite 3.7.3 with Tcl binding

2010-10-10 Thread Paweł Salawa
Hi, How do I compile sqlite 3.7.3 with Tcl bindings? I don't see any tcl-related options in configure script (the amalgamation distribution) and default compilation doesn't probide Tcl bindings. Thanks for help! Regards, -- Paweł Salawa pawelsal...@gmail.com

Re: [sqlite] Building sqlite

2009-06-29 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Doug wrote: > You may need SQLITE_THREADSAFE depending on how you're using the library SQLITE_THREADSAFE defaults to 1 (meaning that SQLite is fully threadsafe no matter what you do). See http://www.sqlite.org/compile.html IF for some reason you

Re: [sqlite] Building sqlite

2009-06-29 Thread Doug
SQLite Database > Subject: Re: [sqlite] Building sqlite > > On Mon, Jun 29, 2009 at 12:58 PM, Eric Minbiole > <eminbi...@mavroimaging.com>wrote: > > > > I'm currently on Windows and I've set up a python script to > download the > > > sqlite3 amalg

Re: [sqlite] Building sqlite

2009-06-29 Thread Robert Dailey
On Mon, Jun 29, 2009 at 12:58 PM, Eric Minbiole wrote: > > I'm currently on Windows and I've set up a python script to download the > > sqlite3 amalgamation. However, the ZIP file contains no build system for > > sqlite. I had to create a custom CMake script to build

Re: [sqlite] Building sqlite

2009-06-29 Thread Eric Minbiole
> I'm currently on Windows and I've set up a python script to download the > sqlite3 amalgamation. However, the ZIP file contains no build system for > sqlite. I had to create a custom CMake script to build sqlite3 into a > library. I do not wish to compile the C file with my source, it needs to

[sqlite] Building sqlite

2009-06-29 Thread Robert Dailey
I'm currently on Windows and I've set up a python script to download the sqlite3 amalgamation. However, the ZIP file contains no build system for sqlite. I had to create a custom CMake script to build sqlite3 into a library. I do not wish to compile the C file with my source, it needs to be a

Re: [sqlite] Building SQLite ... configure/make deprecated?

2009-05-04 Thread P Kishor
On Mon, May 4, 2009 at 2:59 PM, Rob Sciuk wrote: > > I note with interest the source download now (recently?) deprecates the > configure/make build of SQLite 3.6.x sources.  What gives??  I've been > configure/make(ing) SQLite since, forever, and the only problems I ever >

Re: [sqlite] Building SQLite ... configure/make deprecated?

2009-05-04 Thread Eugene Wee
On Tue, May 5, 2009 at 3:59 AM, Rob Sciuk wrote: > How does one actually obtain the "amalgamation", if not by using the > configure/make scripts, complete with lemon and friends?? One way is by direct download of say, sqlite-amalgamation-3.6.13.tar.gz, from

[sqlite] Building SQLite ... configure/make deprecated?

2009-05-04 Thread Rob Sciuk
I note with interest the source download now (recently?) deprecates the configure/make build of SQLite 3.6.x sources. What gives?? I've been configure/make(ing) SQLite since, forever, and the only problems I ever encountered were omitting options that I needed, and quickly sorted out! How

[sqlite] building SQLite 3.5.4 with SQLITE_OMIT_LOAD_EXTENSION

2007-12-29 Thread Dimitri
Hi, We're building the amalgamated source file with SQLITE_OMIT_LOAD_EXTENSION defined. This had been working just fine until the release of SQLite 3.5.2. It stopped working after the release of SQLite 3.5.3 because sqlite3.c contains: #ifndef SQLITE_OMIT_LOAD_EXTENSION #define

Re: [sqlite] building sqlite on windows in Unicode

2006-12-17 Thread Joe Wilson
Many large open source projects have committers for specific platforms, or particular sections of the code. I would think that Windows support and autoconfigury would be good candidates for delegation. One guy can't do it all. --- Brodie Thiesfield <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED]

Re: [sqlite] building sqlite on windows in Unicode

2006-12-17 Thread Brodie Thiesfield
order to avoid adding them to the existing OS abstraction layer. Regards, Brodie -Original Message- From: Brodie Thiesfield [mailto:[EMAIL PROTECTED] Sent: Sunday, December 17, 2006 10:10 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite] building sqlite on windows in Unicode

RE: [sqlite] building sqlite on windows in Unicode

2006-12-17 Thread Robert Simpson
[EMAIL PROTECTED] > Sent: Sunday, December 17, 2006 10:10 AM > To: sqlite-users@sqlite.org > Subject: Re: [sqlite] building sqlite on windows in Unicode > > [EMAIL PROTECTED] wrote: > > Brodie Thiesfield <[EMAIL PROTECTED]> wrote: > >> Done. Is there anything

Re: [sqlite] building sqlite on windows in Unicode

2006-12-16 Thread drh
Brodie Thiesfield <[EMAIL PROTECTED]> wrote: > Done. Is there anything else that is necessary to contribute code and > patches to sqlite? For ticket #2023, the first patch seems unlikely to work right since it changes the character encoding for LoadLibrary() but leaves it unchanged for

Re: [sqlite] building sqlite on windows in Unicode

2006-12-16 Thread Brodie Thiesfield
Done. Is there anything else that is necessary to contribute code and patches to sqlite? The bug database seems to lack feedback (many bugs seem to just lie stale, there is no way to create an account to login, etc). I can't find documentation on the website on contributions. Regards, Brodie

Re: [sqlite] building sqlite on windows in Unicode

2006-12-14 Thread Christian Smith
Check the requirements in: http://www.sqlite.org/copyright.html for patches and other submissions to SQLite. This could be what is holding up inclusion of the patch. Christian Brodie Thiesfield uttered: Hi, Building sqlite on windows in Unicode mode broke with the addition of the loadable

[sqlite] building sqlite on windows in Unicode

2006-12-12 Thread Brodie Thiesfield
Hi, Building sqlite on windows in Unicode mode broke with the addition of the loadable extensions. I found a bug matching this problem and attached a patch to it to fix it a while ago, however I haven't seen any other comments or movement in the bug. I'm not sure what else needs to be done to

Re: [sqlite] Building sqlite 3.2.8 on redhat 9 (off list)

2006-01-03 Thread Lloyd Thomas
The precompiled version did work. I was just trying to compile it myself to get experience building a linux box. Lloyd - Original Message - From: <[EMAIL PROTECTED]> To: <sqlite-users@sqlite.org> Sent: Tuesday, January 03, 2006 1:29 PM Subject: Re: [sqlite] Building

Re: [sqlite] Building sqlite 3.2.8 on redhat 9 (off list)

2006-01-03 Thread drh
"Lloyd Thomas" <[EMAIL PROTECTED]> wrote: > Thanks Kimball > Your right about having a little experience. I am > just running into error after error installing apps, but I'm learnoing > slowly. Anyway, I was trying to install the sqlite support for another > application

Re: [sqlite] Building sqlite 3.2.8 on redhat 9 (off list)

2006-01-03 Thread Arjen Markus
Lloyd Thomas wrote: > > Thanks Kimball > Your right about having a little experience. I am > just running into error after error installing apps, but I'm learnoing > slowly. Anyway, I was trying to install the sqlite support for another > application I want to use and as a

Re: [sqlite] Building sqlite 3.2.8 on redhat 9 (off list)

2006-01-03 Thread Lloyd Thomas
installed sqlite 3.2.8 correctly for me. It would be good if I could type sqlite3 at the prompt and it would just start. Lloyd - Original Message - From: "Arjen Markus" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January 03, 2006 7:51 AM Subject:

Re: [sqlite] Building sqlite 3.2.8 on redhat 9

2006-01-02 Thread Lloyd Thomas
uary 02, 2006 12:13 PM Subject: Re: [sqlite] Building sqlite 3.2.8 on redhat 9 Lloyd Thomas wrote: I have compilted tcl, but had a problem with tk. having compiled sqlite3 I get a new error trying to run sqlite3 = 'sqlite3: error while loading shared libraries: libsqlite3.so.0: cannot op

Re: [sqlite] Building sqlite 3.2.8 on redhat 9

2006-01-02 Thread Arjen Markus
Lloyd Thomas wrote: > > I have compilted tcl, but had a problem with tk. having compiled sqlite3 I > get a new error trying to run sqlite3 = > 'sqlite3: error while loading shared libraries: libsqlite3.so.0: cannot open > shared object file: No such file or diretory' > That seems a common

Re: [sqlite] Building sqlite 3.2.8 on redhat 9

2006-01-02 Thread Lloyd Thomas
: "Dan Kennedy" <[EMAIL PROTECTED]> To: <sqlite-users@sqlite.org> Sent: Monday, January 02, 2006 5:37 AM Subject: Re: [sqlite] Building sqlite 3.2.8 on redhat 9 If possible, the easiest way around this is to install Active-tcl. Or compile the tcl library yourself. For a l

Re: [sqlite] Building sqlite 3.2.8 on redhat 9

2006-01-01 Thread Dan Kennedy
If possible, the easiest way around this is to install Active-tcl. Or compile the tcl library yourself. For a long time the stock tcl install in redhat was problematic. http://www.activestate.com/Products/ActiveTcl/ --- Lloyd Thomas <[EMAIL PROTECTED]> wrote: > I am having a problem

[sqlite] Building sqlite 3.2.8 on redhat 9

2006-01-01 Thread Lloyd Thomas
I am having a problem building sqlite on my redhat 9 box. There seems to be a problem with TCL. I am no linux guru, so it some one can poinjt me in the right direction that would be great. here is as far as I get [EMAIL PROTECTED]

[sqlite] Building SQLite in MSVC 6

2004-11-01 Thread Guy Hachlili
Hello. First I'd like to compliment you on a very nice product; I've been adding database support to an open source project and SQLite is of immense help to us. I've been building SQLite as a library and as a DLL for Windows using Visual C++ 6 from sources of version 3.0.8. I'd be happy to