MySQL with ADORDD: Error Message

Post Reply
User avatar
gkuhnert
Posts: 274
Joined: Fri Apr 04, 2008 1:25 pm
Location: Aachen - Germany // Kerkrade - Netherlands
Contact:

MySQL with ADORDD: Error Message

Post by gkuhnert »

Hello,

I want to use a mysql-table with adordd. Therefore I modified a sample from the adordd.zip, I found via this forum. The browse of the table works well, and the modify command also works fine on first or second change. But after using it a few times, I get this error message:
Image

My code is the following:

Code: Select all | Expand

#include "adordd.ch"
#include "FiveWin.ch"

REQUEST ADORDD

function Main()
   USE kuhnert VIA "ADORDD" TABLE "sqltst" MYSQL ;
      FROM "localhost" USER "kuhnert" PASSWORD "kuhnert"
   Browse()
   USE
return nil


The user has all rights (all priviliges)

As you can see, the browse() works fine:
Image

Has someone experienced something similar and can give me a hint?[/img]
Best Regards,

Gilbert Kuhnert
CTO Software GmbH
http://www.ctosoftware.de
User avatar
JC
Posts: 445
Joined: Thu Feb 21, 2008 11:58 am
Location: Brazil
Contact:

Post by JC »

Hi Gilbert...

I tried to use the ADORDD and caught the same error, but when used like this:

Code: Select all | Expand

USE kuhnert VIA "ADORDD" ALIAS TEST TABLE "sqltst" MYSQL ;
      FROM "localhost" USER "kuhnert" PASSWORD "kuhnert"
   TEST->( browse() )
   USE


It's seems a random error... I don't know!
Peace and lighting!

Júlio César M. Ferreira

FWH 8.10 / xHB 1.1.0 / xDevStudio 0.72 / Pelles C 5.0.1 / SQLLIB 1.9
Post Reply