Re: [Gambas-user] Gambas3 Printing

2010-12-05 Thread Benoît Minisini
> > And there is another bug in gb.qt4 printing: the font size is not > resolution independant, whereas it should be the contrary according the > documentation (i.e. a 50 points font is very small, as if its height is > actually 50 pixels.). I must investigate too... > The font size bug when pri

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] GB3, Paint.CurveTo

2010-12-05 Thread Benoît Minisini
> Hello, > i want to paint a graph from numerical data using CurveTo. > CurveTo expects 3 points (p1,p2,p3) where p1 == (x1,y1) > If i want to advance in curve plotting i have to add a p4,p5,...pn. > Do i need always to provide the additional point by repeating the > recently added 2 points or is t

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

Re: [Gambas-user] BUG: Problem with DateAdd function

2010-12-05 Thread EA7DFH
El 05/12/10 01:16, Benoît Minisini escribió: >> >> But then why am I getting the 'invalid date' error in 2.22? And more >> importantly, what do I need to do to correct it? >> > > That is the question! > > Check first that you really have Gambas 2.22 installed, and that you run it. > To do that,