execute stred procedure
635442Apr 22 2008 — edited Apr 23 2008hello,
please tell me how can i execute this stored procedure:
create or replace procedure recherche_simple_sans_ville
(
titre IN varchar,resultat OUT cv%Rowtype
)
is
BEGIN
SELECT * INTO resultat FROM touhami.cv
WHERE metier LIKE titre ;
end;