Re: [sqlite] Version 3.1.3 is a headache

2005-02-28 Thread Christopher Petrilli
On Sat, 28 Feb 2004 11:52:03 +0100, Jakub Adamek <[EMAIL PROTECTED]> wrote: > Is it really so that some database server returns a result set with two > same column names? Seems very strange. And the lovely SQLite 3.0.8 > didn't do such things ... PostgreSQL, which holds closer to the SQL spec

RE: [sqlite] Version 3.1.3 is a headache

2005-02-27 Thread Brass Tilde
> The last one is really annoying and I can't believe the > auto-tests could have missed it ... > >create table a (id, x); >create table b (id, y); >insert into a values (1,1); >insert into b values (1,2); >select * from a inner join b; > > column names returned:

Re: [sqlite] Version 3.1.3 is a headache

2005-02-27 Thread Clay Dowling
Jakub Adamek wrote: select * from a inner join b; Just as a general guide with any database system, this type of query isn't particularly recommended because of the namespace issue. Here's what I do to get around the problem (again, not just with SQLite): 1. Specify the criteria for the join

RE: [sqlite] Version 3.1.3 is a headache

2005-02-27 Thread Cariotoglou Mike
: [sqlite] Version 3.1.3 is a headache On Sat, 2005-02-26 at 22:43 +0100, Jakub Adamek wrote: > Hi, I really love SQLite, but upgrading to 3.1.3 was not a good idea. > I have already posted 3 tickets with rather serious problems with > column names. > > The last one is really

Re: [sqlite] Version 3.1.3 is a headache

2005-02-26 Thread D. Richard Hipp
On Sat, 2005-02-26 at 22:43 +0100, Jakub Adamek wrote: > Hi, I really love SQLite, but upgrading to 3.1.3 was not a good idea. I > have already posted 3 tickets with rather serious problems with column > names. > > The last one is really annoying and I can't believe the auto-tests could > have

Re: [sqlite] Version 3.1.3 is a headache

2005-02-26 Thread Bernhard Döbler
2005 10:43 PM Subject: [sqlite] Version 3.1.3 is a headache > Hi, I really love SQLite, but upgrading to 3.1.3 was not a good idea. I > have already posted 3 tickets with rather serious problems with column > names. > > The last one is really annoying and I can't believ

[sqlite] Version 3.1.3 is a headache

2005-02-26 Thread Jakub Adamek
Hi, I really love SQLite, but upgrading to 3.1.3 was not a good idea. I have already posted 3 tickets with rather serious problems with column names. The last one is really annoying and I can't believe the auto-tests could have missed it ... create table a (id, x); create table b (id, y);

Re: [sqlite] Version 3.1.3

2005-02-19 Thread Jeremy Hinegardner
On Sat, Feb 19, 2005 at 09:30:26PM -0500, D. Richard Hipp wrote: > As always, please let me know if you find any > problem. gmake && gmake test on OpenBSD 3.6/amd64 results in the following warnings and test errors. Looks like it is all because of 64bit architecture. If you want me to test

[sqlite] Version 3.1.3

2005-02-19 Thread D. Richard Hipp
SQLite version 3.1.3 is now available on the website. http://www.sqlite.org/ This release fixes a few minor problems that were found in 3.1.2. This release is also designed to be forwards compatible with version 3.2. Version 3.1.2 might not be able to read and write some database files