RE: [sqlite] Version 3.3.14

2007-04-03 Thread Noah Hart
I found it, I was using an old sqlite3.def file for the exports. Regards, Noah -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, April 02, 2007 10:00 AM To: sqlite-users@sqlite.org Subject: Re: [sqlite] Version 3.3.14 "Noah Hart" <[EM

Re: [sqlite] Version 3.3.14

2007-04-03 Thread drh
Gunnar Roth <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] schrieb: > > SQLite version 3.3.14 is now available on the SQLite website > > We have also added > > the concept of "exclusive access mode". In exclusive access > > mode, SQLite holds onto locks until you close the connection > > >

Re: [sqlite] Version 3.3.14

2007-04-03 Thread Gunnar Roth
[EMAIL PROTECTED] schrieb: SQLite version 3.3.14 is now available on the SQLite website We have also added the concept of "exclusive access mode". In exclusive access mode, SQLite holds onto locks until you close the connection I should maybe made clear that this new behaviour influences

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Clark Christensen
Excellent. All tests passed. Thanks for the quick fix. -Clark - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: sqlite-users@sqlite.org Sent: Monday, April 2, 2007 3:20:45 PM Subject: Re: [sqlite] Version 3.3.14 Clark Christensen <[EMAI

Re: [sqlite] Version 3.3.14

2007-04-02 Thread drh
Clark Christensen <[EMAIL PROTECTED]> wrote: > > Did you use "configure; make" to get this error? > > Yes. I used the configure script, and make, as you describe. > Apply the patch at http://www.sqlite.org/cvstrac/chngview?cn=3805 The library itself builds correctly, just not the test

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Cesar Rodas
e; make" to get this error? > > Yes. I used the configure script, and make, as you describe. > > -Clark > > - Original Message > From: " [EMAIL PROTECTED]" <[EMAIL PROTECTED]> > To: sqlite-users@sqlite.org > Sent: Monday, April 2, 2007 1:47:

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Cesar Rodas
ark - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: sqlite-users@sqlite.org Sent: Monday, April 2, 2007 1:47:26 PM Subject: Re: [sqlite] Version 3.3.14 Clark Christensen <[EMAIL PROTECTED]> wrote: > I'm seeing an error in make test

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Clark Christensen
> Did you use "configure; make" to get this error? Yes. I used the configure script, and make, as you describe. -Clark - Original Message From: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> To: sqlite-users@sqlite.org Sent: Monday, April 2, 2007 1:47:26 PM

Re: [sqlite] Version 3.3.14

2007-04-02 Thread drh
Clark Christensen <[EMAIL PROTECTED]> wrote: > I'm seeing an error in make test for 3.3.14: > > /tmp/ccDdRRCh.o: In function `Sqlitetest1_Init': > /home/cchriste/sqlite-3.3.14/src/test1.c:4321: undefined reference to > `sqlite3_xferopt_count' > collect2: ld returned 1 exit status > make: ***

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Clark Christensen
I'm seeing an error in make test for 3.3.14: /tmp/ccDdRRCh.o: In function `Sqlitetest1_Init': /home/cchriste/sqlite-3.3.14/src/test1.c:4321: undefined reference to `sqlite3_xferopt_count' collect2: ld returned 1 exit status make: *** [testfixture] Error 1 $ Red Hat Linux 7.2 (2.4.7.10); gcc

Re: [sqlite] Version 3.3.14

2007-04-02 Thread Dennis Cote
[EMAIL PROTECTED] wrote: SQLite version 3.3.14 is now available on the SQLite website http://www.sqlite.org/ Version 3.3.14 focuses on performance improvements. There have been several changes to the back-end layers (the pager and the b-tree subsystems) that reduce the amount of disk

Re: [sqlite] Version 3.3.14

2007-04-02 Thread bartsmissaert
Thanks; that sounds like a very worthwile update. Will let you know what the performance gain is once I have my wrappers sorted. RBS > SQLite version 3.3.14 is now available on the SQLite website > >http://www.sqlite.org/ > > Version 3.3.14 focuses on performance improvements. There > have

Re: [sqlite] Version 3.3.14

2007-04-02 Thread drh
"Noah Hart" <[EMAIL PROTECTED]> wrote: > Complies fine. > > Linking shell.c I get the following errors > > Error 326 error LNK2001: unresolved external symbol > _sqlite3_io_trace shell.obj > Error 327 fatal error LNK1120: 1 unresolved externals >

RE: [sqlite] Version 3.3.14

2007-04-02 Thread Anderson, James H \(IT\)
Something that would be very useful in the shell code in a future release would be the ability to handle data containing embedded binary data. I use the shell to populate tables and many of the files I need to load have the odd \n or \000 embedded in what whould be ascii text. Sybase handles this

RE: [sqlite] Version 3.3.14

2007-04-02 Thread Noah Hart
Complies fine. Linking shell.c I get the following errors Error 326 error LNK2001: unresolved external symbol _sqlite3_io_trace shell.obj Error 327 fatal error LNK1120: 1 unresolved externals F:\SQLite3\Projects\SQLite3C\bin\Debug\Sqlite3.exe Any suggestions?