create or replace procedure add_row_to_test
(
aid in test.id%TYPE,
afn in test.firstname%TYPE,
aln in test.surname%TYPE
)
is
begin
/**
In this procedure I want to put single quotes around the values of aid,afn, and aln.
Any ideas how I do this ???
**/
insert into test (id,firstname,surname)
values (aid, afn,aln);
dbms_output.put_line('Added a row to the table');
commit;
end;
/
(
aid in test.id%TYPE,
afn in test.firstname%TYPE,
aln in test.surname%TYPE
)
is
begin
/**
In this procedure I want to put single quotes around the values of aid,afn, and aln.
Any ideas how I do this ???
**/
insert into test (id,firstname,surname)
values (aid, afn,aln);
dbms_output.put_line('Added a row to the table');
commit;
end;
/