Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Dynamic SQL & DBD::Oracle
Hi Mladen,=20
This is in a nutshell what I ended up doing, but not as elegantly as you just did.=20
Thank you.
Lisa
-----Original Message-----
From: Mladen Gogala [mailto:mladen_at_wangtrading.com]=20
Sent: Tuesday, February 17, 2004 12:15 PM
To: oracle-l_at_freelists.org
Subject: Re: Dynamic SQL & DBD::Oracle
sub tblcnt {
my $table=3Dshift;
return qq{ SELECT count(*) from $table where julian_run_date=3D:RD};
}
my $sth=3D$dbh->prepare(tblcnt("EMP"));
$sth->bind_param(":RD",$RUN_DATE); $sth->execute; $sth->bind_column(1,$COUNT); $sth->fetch(); $sth->finish($WITH_PREJUDICE);
On 02/17/2004 11:01:09 AM, "Koivu, Lisa" wrote:
> Hello everyone,=3D20
>=20
>=20
>=20
> $sql_stmt =3D3D qq{
> FROM ?
> WHERE julian_Run_date =3D3D ?
> };
>=20 >=20
>=20
>=20 >=20 >=20
>=20> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> ----------------------------------------------------------------
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- "The sender believes that this E-Mail and any attachments were free of = any virus, worm, Trojan horse, and/or malicious code when sent. This = message and its attachments could have been infected during = transmission. By reading the message and opening any attachments, the = recipient accepts full responsibility for taking proactive and remedial = action about viruses and other defects. The sender's business entity is = not liable for any loss or damage arising in any way from this message = or its attachments." ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Tue Feb 17 2004 - 12:06:58 CST
![]() |
![]() |