Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MySQL Stored Procedures
Message
 
To
All
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Title:
MySQL Stored Procedures
Miscellaneous
Thread ID:
01117533
Message ID:
01117533
Views:
53
Hi all. I'm trying to exec a MySQL 5.0.20 stored procedure (which executes ok inside MySQL Administrator) thru MyODBC 3.51.12, but I always get an error.
The SP is defined like:

CREATE DEFINER=`root`@`%` FUNCTION `NumRecs`() RETURNS int(11)
SQL SECURITY INVOKER
COMMENT 'Prueba de Stored Procedure'
BEGIN
Declare nRecs Int;
Select Count(*) Into nRecs From NCH;
Return nRecs;
END

And in the VFP .prg:

h=SQLConnect("Necropolis")
If h>0
If SQLExec(h, "Call NumRecs();", "qRecs") < 0
AError(x)
MessageBox( x[3] )
EndIf
SQLDisconnect(h)
EndIf

TIA
Germán Turriziani
Marcos Juarez - Córdoba - Argentina
gturriziani@tutopia.com
gturriziani@hotmail.com
Next
Reply
Map
View

Click here to load this message in the networking platform