當前位置: 首頁>>代碼示例>>PHP>>正文


PHP aql::in_transaction方法代碼示例

本文整理匯總了PHP中aql::in_transaction方法的典型用法代碼示例。如果您正苦於以下問題:PHP aql::in_transaction方法的具體用法?PHP aql::in_transaction怎麽用?PHP aql::in_transaction使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在aql的用法示例。


在下文中一共展示了aql::in_transaction方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: select

 /**
  * Executes a select query on the DB
  * @param   mixed   $aql        aql | model name | aql array
  * @param   array   $clause     clause array | true (for $obj)
  * @param   mixed   $obj        Boolean or object name
  * @param   string  $statement  If passing in an aql array, use this to also pass in
  *                              the aql statement
  * @param   Boolean $force      Force master DB read
  * @param   mixed   $conn       Specific DB connection
  * @return  array
  * @global  $is_dev
  * @throws  \Sky\AQL\Exception  if model not found
  */
 public function select($aql, $clause = array(), $obj = false, $statement = null, $force = false, $conn = null)
 {
     global $is_dev;
     $conn = $conn ?: self::getDB();
     $silent = aql::in_transaction();
     if (!is_array($clause) && $clause === true) {
         $obj = true;
     }
     if (!$aql) {
         return array();
     }
     if (is_array($aql)) {
         $aql_array = $aql;
     } else {
         if (self::is_aql($aql)) {
             $statement = $aql;
             $aql_array = aql2array($statement);
         } else {
             $m = $aql;
             $statement = self::get_aql($m);
             if (!$statement) {
                 $e = new \Sky\AQL\Exception(' AQL Error: Model ' . $m . ' is not defined. ' . PHP_EOL . "path/to/models/{$m}/{$m}.aql is empty or not found.");
                 if (!$silent) {
                     self::$errors[] = $e;
                     return array();
                 }
                 throw $e;
             }
             $aql_array = aql2array::get($m, $statement);
         }
     }
     if ($obj && !is_bool($obj) && $m) {
         $obj = $m;
     }
     if (is_array($clause)) {
         $clause = self::check_clause_array($aql_array, $clause);
     }
     if ($_GET['aql_debug'] && $is_dev) {
         print_a($aql_array);
     }
     $returned = self::make_sql_array($aql_array, $clause);
     if ($_GET['aql_debug'] && $is_dev) {
         print_a($returned);
     }
     if ($_GET['refresh']) {
         $force = true;
     }
     $params = array('object' => $obj, 'aql_statement' => $statement, 'sub_do_set' => $force);
     return self::sql_result($returned, $params, $conn);
 }
開發者ID:HotwireCommunications,項目名稱:skyphp,代碼行數:63,代碼來源:class.aql.php


注:本文中的aql::in_transaction方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。