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
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
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"
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 & "
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"
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...
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