Hi Chris:

As documented in http://www.php.net/manual/en/function.pdo-prepare.php:

"The SQL statement can contain zero or more named (:name) or question
mark (?) parameter markers for which real values will be substituted
when the statement is executed."

Anything beyond this would be an extension to the PDO spec that would
have to be implemented within the actual pdo_pgsql driver.

Dan

On Tue, 22 Mar 2005 22:36:50 +0800, Christopher Kings-Lynne
<[EMAIL PROTECTED]> wrote:
> > Most of the PDO interface is supported in pgsql driver. However we do not
> > use native pgsql prepare/execute but PDO's built in emulation for it. If you
> > could look into how could native api be used in pdo_pgsql that would be
> > great.
> >
> 
> Ooer.  How on earth do you simulate the parameter markers?  Are they
> required to be '?'?  Do you deal with dollar quoting, etc.?
> 
> Chris
> 
> --
> PHP Internals - PHP Runtime Development Mailing List
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
>

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to