Will DirectSQL be updated to include support for mySQL 5 ?
What do you mean by support for mysql 5?
As far as i'm aware it works just fine with the latest version of mysql...
Standard query like SELECT works well
But i can't have access to Stored Procedures, server say : PROCEDURE xxxx can't return a result set in the given context
Any Idea ?
Thx
http://forums.mysql.com/read.php?98,48739,51251 http://forums.mysql.com/read.php?98,48703,49918
To save you the time you'll need to read these things the short version is that you're missing the multi-statements flag on the client.
I may need to upload a new version of direct mysql if the present one doesnt have it ..
Thanks a lot, i'll try that immediatly.
Great !!
With 1.2.2 :
MySQLClient.ClientFlag:= MySQLClient.ClientFlag or CLIENT_MULTI_RESULTS;
....And everything fine :)
Log in to post a comment.
Will DirectSQL be updated to include support for mySQL 5 ?
What do you mean by support for mysql 5?
As far as i'm aware it works just fine with the latest version of mysql...
Standard query like SELECT works well
But i can't have access to Stored Procedures, server say :
PROCEDURE xxxx can't return a result set in the given context
Any Idea ?
Thx
http://forums.mysql.com/read.php?98,48739,51251
http://forums.mysql.com/read.php?98,48703,49918
To save you the time you'll need to read these things the short version is that you're missing the multi-statements flag on the client.
I may need to upload a new version of direct mysql if the present one doesnt have it ..
Thanks a lot, i'll try that immediatly.
Great !!
With 1.2.2 :
MySQLClient.ClientFlag:= MySQLClient.ClientFlag or CLIENT_MULTI_RESULTS;
....And everything fine :)