Hi, i try to figure out, if there's a way to use dbms_output with php. here's my procedure:
Procedur Test Is Begin dbms_output.put_line('Test'); End; Procedur Test2 Is Begin Raise NO_DATA_FOUND; Exception When NO_DATA_FOUND Then dbms_output.put_line('Test'); End; how do i get the string 'Test' with PHP? i'm not getting any result. if i try to do a query which uses dbms_output.get_line, var_dump says NULL. is it possible to use dbms_output with php? Any ideas? Michael -- PHP Development Mailing List <http://www.php.net/> To unsubscribe, visit: http://www.php.net/unsub.php