Firebird cleanup
This commit is contained in:
parent
5a4f6a3455
commit
c12fcd9c09
@ -19,7 +19,12 @@
|
|||||||
*/
|
*/
|
||||||
class Firebird extends DB_PDO {
|
class Firebird extends DB_PDO {
|
||||||
|
|
||||||
protected $statement, $statement_link, $trans, $count, $result, $conn;
|
protected $statement,
|
||||||
|
$statement_link,
|
||||||
|
$trans,
|
||||||
|
$count,
|
||||||
|
$result,
|
||||||
|
$conn;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Open the link to the database
|
* Open the link to the database
|
||||||
@ -220,6 +225,18 @@ class Firebird extends DB_PDO {
|
|||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to emulate PDO->errorCode
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function errorCode()
|
||||||
|
{
|
||||||
|
return fbird_errcode();
|
||||||
|
}
|
||||||
|
|
||||||
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bind a prepared query with arguments for executing
|
* Bind a prepared query with arguments for executing
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user