Show
Ignore:
Timestamp:
10/03/08 18:15:28 (3 months ago)
Author:
nowelium
Message:
 
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/php/misc/Hermit/src/Hermit/parameter/HermitMySqlProcedureParameter.php

    r20492 r20612  
    3030    public function bind(PDOStatement $stmt, $value){ 
    3131        $param = $value[0]; 
     32        $param->__init__(); 
    3233        foreach($this->bindKeys as $index => $key){ 
    3334            if($this->info->typeofIn($key)){ 
    34                 $stmt->bindParam(':' . $key, $param->$key); 
     35                $stmt->bindValue(':' . $key, $param->get($key)); 
    3536            } 
    3637        }