Re: [Gambas-user] Connection.Create and .Index

2010-11-30 Thread tobias
Benoît Minisini schrieb: >> Benoît Minisini schrieb: so how does the driver know where to write a result record to in a database? thanks, tobi >>> Well, do you know what SQL is? >> i know that it is a query language to manipulate data in databases, but >> that doesn't seem

Re: [Gambas-user] Connection.Create and .Index

2010-11-30 Thread Benoît Minisini
> Benoît Minisini schrieb: > >> so how does the driver know where to write a result record to in a > >> database? > >> > >> thanks, > >> tobi > > > > Well, do you know what SQL is? > > i know that it is a query language to manipulate data in databases, but > that doesn't seem to be enough if you

Re: [Gambas-user] Connection.Create and .Index

2010-11-30 Thread tobias
Benoît Minisini schrieb: >> so how does the driver know where to write a result record to in a >> database? >> >> thanks, >> tobi >> > > Well, do you know what SQL is? > i know that it is a query language to manipulate data in databases, but that doesn't seem to be enough if you can answer my q

Re: [Gambas-user] Connection.Create and .Index

2010-11-29 Thread Benoît Minisini
> > so how does the driver know where to write a result record to in a > database? > > thanks, > tobi > Well, do you know what SQL is? -- Benoît Minisini -- Increase Visibility of Your 3D Game App & Earn a Chance To

Re: [Gambas-user] Connection.Create and .Index

2010-11-29 Thread tobias
Benoît Minisini schrieb: >>> In creation mode there is only one record in the Result object, the >>> record that will be created. So Result.Index always returns 0. >>> >>> Regards, >> oh... of course! this makes sense! >> and for general unterstanding, i can say that an index in a result is >> some

Re: [Gambas-user] Connection.Create and .Index

2010-11-29 Thread Benoît Minisini
> > > > In creation mode there is only one record in the Result object, the > > record that will be created. So Result.Index always returns 0. > > > > Regards, > > oh... of course! this makes sense! > and for general unterstanding, i can say that an index in a result is > some kind of linked to

Re: [Gambas-user] Connection.Create and .Index

2010-11-29 Thread tobias
Benoît Minisini schrieb: >> hi, >> >> i'm confused about the output i get from: >> >> PUBLIC SUB test() >> >>DIM hResult AS Result >> >>'hConnection is an established Connection, with existing Table >> "test", Fields "id", db.Serial Primary Key, "name" db.String >>hResult = hConnection.

Re: [Gambas-user] Connection.Create and .Index

2010-11-29 Thread Benoît Minisini
> hi, > > i'm confused about the output i get from: > > PUBLIC SUB test() > >DIM hResult AS Result > >'hConnection is an established Connection, with existing Table > "test", Fields "id", db.Serial Primary Key, "name" db.String >hResult = hConnection.Create("test") >PRINT hResul

[Gambas-user] Connection.Create and .Index

2010-11-29 Thread tobias
hi, i'm confused about the output i get from: PUBLIC SUB test() DIM hResult AS Result 'hConnection is an established Connection, with existing Table "test", Fields "id", db.Serial Primary Key, "name" db.String hResult = hConnection.Create("test") PRINT hResult.Index hResult["nam