Re: Stored procedures, PDO, and PHP issue - Mailing list pgsql-php

From Ronald D. Willis
Subject Re: Stored procedures, PDO, and PHP issue
Date
Msg-id 4AA73C10.2080709@rdwonline.com
Whole thread Raw
In response to Stored procedures, PDO, and PHP issue  (Eric Chamberlain <Eric.Chamberlain@zonarsystems.com>)
List pgsql-php
Add this as a PDO option

array(PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION)

I bet there's a PDOException being thrown and I would NOT be at all
surprised if it is a HY000 error where PDO is complaining about
unbuffered queries....



On 2009-08-19 20:47, Eric Chamberlain wrote:
 > Wow, I apologize. The code is exactly like what yours is. In my rush
 > I missed the correct code.
 >
 > Eric
 >
 > > >>> $stmt->bindParam(1, $userId, $hashPass, PDO::PARAM_INT);
 > >
 > >
 > > You should be calling bindParam once for each parameter
 > > $stmt->bindParam(1, $userId, PDO::PARAM_INT);
 > > $stmt->bindParam(2, $hashPass, PDO::PARAM_STR);
 > >
 > >
 > > Nick
 > >
 >
 >

pgsql-php by date:

Previous
From: Arun Oakley
Date:
Subject: pg_connect() error
Next
From: Chris
Date:
Subject: Re: pg_connect() error