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
1 changed files with 4 additions and 9 deletions

View File

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