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


PHP Sqlite::value方法代碼示例

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


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

示例1: value

 /**
  * Returns a quoted and escaped string of $data for use in an SQL statement.
  *
  * @param string $data String to be prepared for use in an SQL statement
  * @param string $column
  * @param int $safe
  * @return string Quoted and escaped
  * @access public
  */
 public function value($data, $column = null, $safe = false)
 {
     $parent = parent::value($data, $column, $safe);
     if ($parent != null) {
         return $parent;
     }
     if ($data === null) {
         return 'NULL';
     }
     switch ($column) {
         case 'boolean':
             if ($data === '') {
                 return 0;
             }
             $data = $this->boolean((bool) $data);
             break;
         case 'integer':
             if ($data === '') {
                 return 'NULL';
             }
             break;
         case 'datetime':
             if ($data) {
                 $data = trim(str_replace('/', '-', $data));
             }
             if ($data === '' || $data == '0000-00-00 00:00:00') {
                 return "''";
             }
             break;
         default:
             if ($data === '') {
                 return "''";
             }
             $data = $this->_connection->quote($data);
             return $data;
             break;
     }
     return "'" . $data . "'";
 }
開發者ID:naow9y,項目名稱:basercms,代碼行數:48,代碼來源:BcSqlite.php

示例2: value

 /**
  * Returns a quoted and escaped string of $data for use in an SQL statement.
  *
  * @param string $data String to be prepared for use in an SQL statement
  * @param string $column
  * @param int $safe
  * @return string Quoted and escaped
  */
 public function value($data, $column = null, $safe = false)
 {
     // ================================================================
     // MEMO 2016/08/07 ryuring
     // SQLiteで、CakeSchemaが出力するスキーマファイルにおいて、
     // boolean に初期値を設定していた場合 false だと、
     // 'default' => "'0'" と出力され、値変換時に true と判定されてしまう。
     // フィールドのデータに初期値を設定しない事が一番望ましいが設定されている場合に
     // バグとなるので念の為対応しておく
     // ================================================================
     if ($column == 'boolean' && ($data === "'0'" || $data === "'1'")) {
         return $data;
     }
     $parent = parent::value($data, $column, $safe);
     if ($parent != null) {
         return $parent;
     }
     if ($data === null) {
         return 'NULL';
     }
     switch ($column) {
         case 'boolean':
             if ($data === '') {
                 return 0;
             }
             $data = $this->boolean((bool) $data);
             break;
         case 'integer':
             if ($data === '') {
                 return 'NULL';
             }
             break;
         case 'datetime':
             if ($data) {
                 $data = trim(str_replace('/', '-', $data));
             }
             if ($data === '' || $data == '0000-00-00 00:00:00') {
                 return "''";
             }
             break;
         default:
             if ($data === '') {
                 return "''";
             }
             $data = $this->_connection->quote($data);
             return $data;
             break;
     }
     return "'" . $data . "'";
 }
開發者ID:baserproject,項目名稱:basercms,代碼行數:58,代碼來源:BcSqlite.php


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