DBMS_OUTPUT.PUT_LINE and implict cursor value
Why cant the following work and get error message
"wrong number or types of arguments in call to 'PUT_LINE'"
begin
for x in ( select column1 from t )
loop
DBMS_OUTPUT.PUT_LINE( x );
end loop
end;
thanks
barr-kum