|
How
about trying to pass the variable you are using in the Cursor to the
Cursor:
CURSOR c_namestbl (p_name_to_check in
varchar2) IS
SELECT lname FROM names WHERE lname = p_name_to_check; Then open the cursor with the variable.
OPEN
c_namestbl(p_name_to_check);
|
- Re: Can't code for s.... peanuts William Beilstein
- RE: Can't code for s.... peanuts Norrell, Brian
- Re: Can't code for s.... peanuts JOE TESTA
- RE: Can't code for s.... peanuts schmoldt
- RE: Can't code for s.... peanuts Yadav, Shailesh
- Re: Can't code for s.... peanuts Dennis M. Heisler
- RE: Can't code for s.... peanuts John Lewis
- Re: Can't code for s.... peanuts
- RE: Can't code for s.... peanuts Mercadante, Thomas F
- RE: Can't code for s.... peanuts Yadav, Shailesh
- Re: Can't code for s.... peanuts Kevin Lange
- Re: Can't code for s.... peanuts
