I'm a newbie trying to write a stored procedure in Oracle 9i. I would like to send a parameter to the stored procedure that would then look for articles that have fulltext. Here is my pseudocode.
procedure (p_fulltext)
SELECT *
FROM ARTICLE
WHERE ARTICLE_FULLTEXT=p_fulltext;
I've read info regarding cursors and such, but I haven't found an example where they show you how to set up a cursor inside of a procedure. If anyone know of a good source I would really appreciate it if you could let me know. Thanks
procedure (p_fulltext)
SELECT *
FROM ARTICLE
WHERE ARTICLE_FULLTEXT=p_fulltext;
I've read info regarding cursors and such, but I haven't found an example where they show you how to set up a cursor inside of a procedure. If anyone know of a good source I would really appreciate it if you could let me know. Thanks