> 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.
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
> 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
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
> >> 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
>> 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
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
> 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\");")
>
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