Hello Jon.
Could you tell me the version of MySql ?. You can find the version by
excuting the command
SELECT version()
If the version is below 5, the stored procedure feature would not work .
Thanks
Visolve DB Team.
----- Original Message -----
From: "Jon" <mysql@stripped>
To: <mysql@stripped>
Sent: Tuesday, July 25, 2006 2:40 PM
Subject: Stored procedures
> Hi list
>
> I'm trying to make stored procedures use parameters for limit and tables,
> I
> guess this is either me using the wrong datatype or it's not possible.
> I'm
> having the same issue with seting the table for the query:
>
> CREATE PROCEDURE sp_test1 (IN some_limit int)
> select * from some_table limit some_limit;
>
> and
> CREATE PROCEDURE sp_test2 (IN some_table table)
> select * from some_table;
>
>
> Both fail with "ERROR 1064 (42000)".
>
> Can someone please shed some light on this for me? Is this a problem with
> procedures not being able to do this or is it wrong datatypes or something
> completely different?
>
> Thanks in advance
> Jon
>