Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Executing a mysql stored procedure
Message
From
27/12/2005 07:58:38
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Executing a mysql stored procedure
Environment versions
Visual FoxPro:
VFP 8 SP1
Database:
MySQL
Miscellaneous
Thread ID:
01080936
Message ID:
01080936
Views:
79
Hi All,

MySQL 5 has triggers and stored procedures and I've been fighting trying to execute a simple MySQL stored procedure from within Visual Foxpro but it keeps failing.


MySQL 5 side:


delimiter $$

drop function if exists 'somedatabase'.'add'$$
create function 'add'(iParm1 INT, iParm2 INT)returns int(11)
begin
return iParm1+iParm2;
end$$

delimiter;


The above executes fine manually from withing the query browser ( ex. select somedatabase.add(1,1) ) but fails when I attempt to run it from within Foxpro. My connection is good and read and writes work just fine.


Foxpro side:


MySQLcon = sqlconnect("someDSN","userid","userpwd")

MySQL_Result = sqlexec(","select somedatabase.add(1,1)")


I've also tried "somedatabase.add(1,1)" and "add(1,1)" in place of the above select statement but it fails returning a -1.



Thanks in advance,

Don
Next
Reply
Map
View

Click here to load this message in the networking platform