示例#1
0
文件: Query.php 项目: matak/dbrecord
 /**
  * Returns SQL query.
  * @return string
  */
 public final function __toString()
 {
     try {
         return $this->repository->getConnection()->translate($this->_export());
     } catch (Exception $e) {
         trigger_error($e->getMessage(), E_USER_ERROR);
     }
 }