On Mon, May 21, 2001 at 11:35:36PM +0900, Michael Cheung wrote:
> Hi;
>       Linux 2.2.18 + oracle 8.1.7i + php-4.0.5 + oci8 interface.
>       
>       I use the following lines to get a result from database;
> But It give me result 0, it is incorrect;
> 
> $sql="Select count(*) From member where email=:email";
> $sth=OCIParse($dbh,$sql);
> OCIBindByName($sth,"email",$email,64);
> // with or without ':' is same, and use reference or not is also same here.
> OCIExecute($sth);
> OCIFetchInto($sth,$data);

    have you set $email in your script (before OCIExecute)?

    tc

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to