MySQL plans to implement stored procedures in 4.1
though :-)
--- Jeremy Zawodny <[EMAIL PROTECTED]> wrote:
> MySQL doesn't have stored procedures yet. It has
> user defined
> functions (UDFs), but that's not what you're looking
> for here.
>
> Jeremy
On Mon, Apr 01, 2002 at 03:51:56PM +0530, Amit Mittal wrote:
> Respected Sir/Mem,
>
> Can i call java stored procedure in mysql database ?
MySQL doesn't have stored procedures yet. It has user defined
functions (UDFs), but that's not what you're looking for here.
Jeremy
--
Jeremy D. Zawodny, <
Respected Sir/Mem,
Can i call java stored procedure in mysql database ?
As i can do this in Posstgresql-
1) Create a procedural language (say java) using a handler.
2) Then create a function using cmd:
CREATE FUNCTION mypi() RETURNS TEXT AS 'java.lang.Math.PI' LANGUAGE'java';
3) Then exec