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

From Eric Chamberlain
Subject Re: Stored procedures, PDO, and PHP issue
Date
Msg-id 62DC7EB1-B4BB-4289-B880-4C7AD1B1AF02@zonarsystems.com
Whole thread Raw
In response to Stored procedures, PDO, and PHP issue  (Eric Chamberlain <Eric.Chamberlain@zonarsystems.com>)
List pgsql-php
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: Eric Chamberlain
Date:
Subject: Overloaded stored procedures, PDO, and PHP issue
Next
From: Andy Shellam
Date:
Subject: Re: Stored procedures, PDO, and PHP issue