Fixed mis-spelled constant name
This commit is contained in:
parent
0dc2817347
commit
ec0269a78b
@ -430,15 +430,15 @@ class Firebird_Result {
|
|||||||
switch($fetch_style)
|
switch($fetch_style)
|
||||||
{
|
{
|
||||||
case PDO::FETCH_OBJ:
|
case PDO::FETCH_OBJ:
|
||||||
return fbird_fetch_object($this->statement, fbird_FETCH_BLOBS);
|
return fbird_fetch_object($this->statement, IBASE_FETCH_BLOBS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case PDO::FETCH_NUM:
|
case PDO::FETCH_NUM:
|
||||||
return fbird_fetch_row($this->statement, fbird_FETCH_BLOBS);
|
return fbird_fetch_row($this->statement, IBASE_FETCH_BLOBS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return fbird_fetch_assoc($this->statement, fbird_FETCH_BLOBS);
|
return fbird_fetch_assoc($this->statement, IBASE_FETCH_BLOBS);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user