On Tue, 2010-03-02 at 22:44 +0100, M. Cs. wrote:
> I'm using sqlite, and I think the querry should look like:
> DIM answer AS Result
> DIM querry As String
> ...
>
> querry="SELECT.;"
> answer=YourConnection.Exec(querry)
> FOR EACH answer
>
> do what you want..
I'm using sqlite, and I think the querry should look like:
DIM answer AS Result
DIM querry As String
...
querry="SELECT.;"
answer=YourConnection.Exec(querry)
FOR EACH answer
do what you want.
NEXT
---
On Mon, 2010-03-01 at 23:36 +0100, Charlie Reinl wrote:
> Am Montag, den 01.03.2010, 16:22 -0500 schrieb Keith Clark:
> > I am trying to access some data using the documentation "A Beginner's
> > Guide to Gambas" and I've gotten this far:
> >
> > PUBLIC SUB SearchButton_Click()
> >
> > DIM $Que
On Mon, 2010-03-01 at 23:36 +0100, Charlie Reinl wrote:
> Am Montag, den 01.03.2010, 16:22 -0500 schrieb Keith Clark:
> > I am trying to access some data using the documentation "A Beginner's
> > Guide to Gambas" and I've gotten this far:
> >
> > PUBLIC SUB SearchButton_Click()
> >
> > DIM $Que
Am Montag, den 01.03.2010, 16:22 -0500 schrieb Keith Clark:
> I am trying to access some data using the documentation "A Beginner's
> Guide to Gambas" and I've gotten this far:
>
> PUBLIC SUB SearchButton_Click()
>
> DIM $Query AS String
> DIM $Result AS Result
> DIM iIndex AS Integer
> D
I am trying to access some data using the documentation "A Beginner's
Guide to Gambas" and I've gotten this far:
PUBLIC SUB SearchButton_Click()
DIM $Query AS String
DIM $Result AS Result
DIM iIndex AS Integer
DIM hField AS ResultField
DatabaseConnection.Connect()
$Query = "sele