Example #1
0
 /**
  * [execPDO description]
  * @method execPDO
  * @param  [type]  $sql      [description]
  * @param  [type]  $params   [description]
  * @param  [type]  $database [description]
  * @return [type]            [description]
  */
 function execPDO($sql, $params = null, $database = null)
 {
     if (is_null($database)) {
         return \GeniusFactor\Fibr\Sql\GFSql::execPDO($sql, $params, SQL_DATABASE);
     } else {
         return \GeniusFactor\Fibr\Sql\GFSql::execPDO($sql, $params, $database);
     }
 }