Minor style change in Firebird driver

This commit is contained in:
Timothy Warren 2012-04-09 10:34:57 -04:00
parent 0aafd02982
commit f4dfd8962c

View File

@ -80,14 +80,9 @@ class firebird extends DB_PDO {
{ {
$this->count = 0; $this->count = 0;
if (isset($this->trans)) $this->statement_link = (isset($this->trans))
{ ? @fbird_query($this->trans, $sql)
$this->statement_link = @fbird_query($this->trans, $sql); : @fbird_query($this->conn, $sql);
}
else
{
$this->statement_link = @fbird_query($this->conn, $sql);
}
// Throw the error as a exception // Throw the error as a exception
if ($this->statement_link === FALSE) if ($this->statement_link === FALSE)
@ -217,7 +212,7 @@ SQL;
public function get_procedures() public function get_procedures()
{ {
$sql = 'SELECT * FROM "RDB$PROCEDURES"'; $sql = 'SELECT * FROM "RDB$PROCEDURES"';
$res = $this->query($sql); $res = $this->query($sql);
return $res->fetchAll(PDO::FETCH_ASSOC); return $res->fetchAll(PDO::FETCH_ASSOC);