Re: [Gambas-user] Connection.Tables

2010-12-06 Thread Benoît Minisini
> hi, > > > Fix has been committed. You can now run "svn update" to get the fix. > > > > Regards, > > hmm, i used svn the first time ever and i didn't really know, what i was > doing... i downloaded the source and just installed it... > (ubuntu 9.04) i did: > $ svn checkout > https://gambas.svn.

Re: [Gambas-user] Connection.Tables

2010-12-06 Thread tobias
hi, > > Fix has been committed. You can now run "svn update" to get the fix. > > Regards, > > hmm, i used svn the first time ever and i didn't really know, what i was doing... i downloaded the source and just installed it... (ubuntu 9.04) i did: $ svn checkout https://gambas.svn.sourceforge

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread Benoît Minisini
> Benoît Minisini schrieb: > You can't update the primary index of a table once it has been created > anyway. > > I have understood where the bug with primary key comes from. It is > just a matter of case: write "integer" in upper case, and the > database driver will

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread tobias
Benoît Minisini schrieb: You can't update the primary index of a table once it has been created anyway. I have understood where the bug with primary key comes from. It is just a matter of case: write "integer" in upper case, and the database driver will detect the prim

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread Benoît Minisini
> >> You can't update the primary index of a table once it has been created > >> anyway. > >> > >> I have understood where the bug with primary key comes from. It is just > >> a matter of case: write "integer" in upper case, and the database > >> driver will detect the primary key! > >> > >> To u

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread tobias
>> You can't update the primary index of a table once it has been created >> anyway. >> >> I have understood where the bug with primary key comes from. It is just a >> matter of case: write "integer" in upper case, and the database driver will >> detect the primary key! >> >> To understand all

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread tobias
Benoît Minisini schrieb: >> hi, >> i noticed something in my test with Connection.Edit() (sqlite3): >> i created a table with connection.exec() >> >> hConnection.Exec("create table test(id integer primary key, name >> varchar(10));") >> >> then inserted some data >> hConnection.Exec("insert into te

Re: [Gambas-user] Connection.Tables

2010-12-05 Thread Benoît Minisini
> hi, > i noticed something in my test with Connection.Edit() (sqlite3): > i created a table with connection.exec() > > hConnection.Exec("create table test(id integer primary key, name > varchar(10));") > > then inserted some data > hConnection.Exec("insert into test(name) values(\"Aaron\");") >

[Gambas-user] Connection.Tables

2010-12-05 Thread tobias
hi, i noticed something in my test with Connection.Edit() (sqlite3): i created a table with connection.exec() hConnection.Exec("create table test(id integer primary key, name varchar(10));") then inserted some data hConnection.Exec("insert into test(name) values(\"Aaron\");") hConnection.Exec("in