Alexey Gaidukov wrote :
>
>I have a DBPROC
>
>
>CREATE DBPROC proc1 RETURNS CURSOR AS
>BEGIN
>        DECLARE :$CURSOR CURSOR FOR
>        ...
>END
>
>
>and I want to use returned cursor in other DBPROC. For example
>
>
>CREATE DBPROC proc2  AS
>BEGIN
>        DECLARE cur CURSOR FOR CALL proc1
>        WHILE $rc = 0 DO BEGIN
>             FETCH ...
>          ...
>END
>
>
>
>Is it possible?
>
>-- 

Sorry, this is not implemented yet. 

Best Regards,
Thomas 

--
MaxDB Discussion Mailing List
For list archives: http://lists.mysql.com/maxdb
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to