Re: Stored procedures, PDO, and PHP issue
"Ronald D. Willis" <[email protected]> Tue, 08 Sep 2009 22:24:32 -0700
| Newsgroups | gmane.comp.db.postgresql.php |
|---|---|
| Message-ID | <[email protected]> |
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 > > > > -- Sent via pgsql-php mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-php