Add fetchObject method to Firebird_result class
This commit is contained in:
parent
3c74f243fe
commit
5a4f6a3455
@ -30,6 +30,7 @@ class Firebird_Result extends PDOStatement {
|
|||||||
public function __construct($link)
|
public function __construct($link)
|
||||||
{
|
{
|
||||||
$this->statement = $link;
|
$this->statement = $link;
|
||||||
|
$this->setFetchMode(PDO::FETCH_ASSOC);
|
||||||
}
|
}
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
@ -163,6 +164,19 @@ class Firebird_Result extends PDOStatement {
|
|||||||
$row = $this->fetch(PDO::FETCH_NUM);
|
$row = $this->fetch(PDO::FETCH_NUM);
|
||||||
return $row[$column_num];
|
return $row[$column_num];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Emulate PDOStatement::fetchObject, but only for the default use
|
||||||
|
*
|
||||||
|
* @param int $colum_num
|
||||||
|
* @return mixed
|
||||||
|
*/
|
||||||
|
public function fetchObject($class_name='stdClass', $ctor_args=array())
|
||||||
|
{
|
||||||
|
return $this->fetch(PDO::FETCH_OBJ);
|
||||||
|
}
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user