Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> Re: Named binds in Perl DBI

Re: Named binds in Perl DBI

From: Mladen Gogala <mgogala_at_adelphia.net>
Date: Thu, 26 Feb 2004 07:21:59 -0500
Message-ID: <20040226122159.GA11229@medo.adelphia.net>


inout bind, for procedures:



$sth->bind_param_inout( ":NUM", \$num_drawn, 10 ); $sth->bind_param_inout( ":DATE", \$when, 10 ); (10 is size)

Classic bind:



$sth->bind_param( ":JB", $job )

On 02/26/2004 01:20:32 AM, Cary Millsap wrote:
> Can someone please remind me how to use the "where col1=:a" DBI syntax
> instead of having to use "where col1=?"
>
>
>
> .Can't find it.
>
>
>
> Cary Millsap
> Hotsos Enterprises, Ltd.
> http://www.hotsos.com
> Nullius in verba
>
> Upcoming events:
> - Performance <http://www.hotsos.com/training/PD101.html> Diagnosis
> 101: 2/24 San Diego, 3/23 Park City, 4/6 Seattle
> - Hotsos Symposium 2004 <http://www.hotsos.com/events/symposium/2004> :
> March 7-10 Dallas
> - Visit www.hotsos.com for schedule details...
>
>
>
>

-- 
Mladen Gogala
Oracle DBA
----------------------------------------------------------------
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 Thu Feb 26 2004 - 06:18:52 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US