Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Variable where clause
Ranko,
I used the second method extensively. We build the where clause depending on input variables and then use "open cursor" and fetches to get the data.
Take advantage of substitution variables like this:
Select_clause varchar2(2000) :=3D 'select * from emp ';
Where_clause varchar2(2000);
Begin
If in_ename is not null then
Where_clause :=3D 'where ename =3D :ename'; End if;
OPEN p_refRS FOR=20
select_clause || where_clause USING in_ename;
Of course, you need to set up the variables to fetch the data into. =20
I like the SYS_CONTEXT approach that Tom Kyte's web site demo'ed. I just have not used it yet - something else to look into!
Good Luck!
Tom
-----Original Message-----
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Ranko Mosic
Sent: Tuesday, June 14, 2005 9:22 PM
To: Jared Still
Cc: oracle-l_at_freelists.org
Subject: Re: Variable where clause
Thanks Jared,=3D20
I like second option because it is black box approach -there are no 3
separate signatures as with orerloaded stuff.
I think actually I will do compbination of the first and third
suggestion - first check which parameters I got, then build sql. It
can be done quite easily now with
this execute immediate stuff.=3D20
Thanks again.=3D20
PS Hope book is selling well.=3D20
On 6/14/05, Jared Still <jkstill_at_gmail.com> wrote:
> The first thing that comes to mind is a package
> with 3 overloaded procedures, one for each set
> of input parameters.
>=3D20
>=3D20
>=3D20
>=3D20
>=3D20
>=3D20
>=3D20
>=3D20 >=3D20
>=3D20 >=3D20 >=3D20
-- http://www.freelists.org/webpage/oracle-l -- http://www.freelists.org/webpage/oracle-lReceived on Wed Jun 15 2005 - 09:10:08 CDT
![]() |
![]() |