Re: [Gambas-user] Mysql query question

2008-11-09 Thread Ron
David Villalobos Cambronero wrote: > Can gb.db.mysql help? > > Regards > > > -- > David > > > > - Original Message > From: Benoit Minisini <[EMAIL PROTECTED]> > To: mailing list for gambas users > Sent: Saturday, November 8, 2008 11:5

Re: [Gambas-user] Mysql query question

2008-11-08 Thread David Villalobos Cambronero
Can gb.db.mysql help? Regards -- David - Original Message From: Benoit Minisini <[EMAIL PROTECTED]> To: mailing list for gambas users Sent: Saturday, November 8, 2008 11:50:11 AM Subject: Re: [Gambas-user] Mysql query question On mercredi 5 novembre 2008, Ron wrote: > Ro

Re: [Gambas-user] Mysql query question

2008-11-08 Thread Benoit Minisini
On mercredi 5 novembre 2008, Ron wrote: > Ron schreef: > > Benoit Minisini wrote: > >> On mardi 4 novembre 2008, Ron wrote: > >>> Hi, > >>> > >>> I'm replacing my buggy mysql query's for correct ones... > >>> > >>> All is well except for this one... > >>> > >>> DIM sTable as String = "remarks_tags"

Re: [Gambas-user] Mysql query question

2008-11-05 Thread Ron
Ron schreef: > Benoit Minisini wrote: >> On mardi 4 novembre 2008, Ron wrote: >> >>> Hi, >>> >>> I'm replacing my buggy mysql query's for correct ones... >>> >>> All is well except for this one... >>> >>> DIM sTable as String = "remarks_tags" >>> >>> Main.hDB.Exec("SELECT text FROM " & sTable & "

Re: [Gambas-user] Mysql query question

2008-11-04 Thread Ron
Benoit Minisini wrote: > On mardi 4 novembre 2008, Ron wrote: > >> Hi, >> >> I'm replacing my buggy mysql query's for correct ones... >> >> All is well except for this one... >> >> DIM sTable as String = "remarks_tags" >> >> Main.hDB.Exec("SELECT text FROM " & sTable & " ORDER BY rand() LIMIT 1"

Re: [Gambas-user] Mysql query question

2008-11-04 Thread Benoit Minisini
On mardi 4 novembre 2008, Ron wrote: > Hi, > > I'm replacing my buggy mysql query's for correct ones... > > All is well except for this one... > > DIM sTable as String = "remarks_tags" > > Main.hDB.Exec("SELECT text FROM " & sTable & " ORDER BY rand() LIMIT 1") > This works ok... > > Replaced by...

[Gambas-user] Mysql query question

2008-11-04 Thread Ron
Hi, I'm replacing my buggy mysql query's for correct ones... All is well except for this one... DIM sTable as String = "remarks_tags" Main.hDB.Exec("SELECT text FROM " & sTable & " ORDER BY rand() LIMIT 1") This works ok... Replaced by... Main.hDB.Exec("SELECT text FROM &1 ORDER BY rand() LIM