Click here to Skip to main content
15,891,704 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello,
" am using oracle 11g "
am connecting my asp.net project with oracle database , so am creating Procedures to get my
work perfect.
this is the code am using to create procedure

create or replace package humanresources
type t_cursor is ref cursor;
as
procedure get_employee(cur_employees out t_cursor)
is
begin
open cur_employees for select * from emp;
end get_employee;
end human_resources;


and the error in the first line at column 7 so it's near create
i don't know why i am getting this error ...
thanks in advance :)
Posted
Comments
[no name] 17-May-14 17:39pm    
http://www.techonthenet.com/oracle/procedures.php

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900