Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
MySQL Stored Procedures
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01117533
Message ID:
01117719
Views:
21
What error do you get?

>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
>
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform