hi,

i have a function that returns a cursor.  how do i get at it in php?

here's my function:
create function test3 (INTEGER) RETURNS refcursor AS '
DECLARE
 cursor1 CURSOR FOR select description FROM t0040stock_item WHERE
stock_number = $1;
BEGIN
  open cursor1;
  return (cursor1);
END;
' LANGUAGE 'plpgsql';



thanks



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to