当前位置: 首页>>代码示例>>PHP>>正文


PHP SQL::__construct方法代码示例

本文整理汇总了PHP中SQL::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP SQL::__construct方法的具体用法?PHP SQL::__construct怎么用?PHP SQL::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SQL的用法示例。


在下文中一共展示了SQL::__construct方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($siteId = false)
 {
     //TODO: make tables prefixes
     if (empty($this->primaryKey)) {
         $this->primaryKey = str_replace("cody_", "", $this->table) . "_id";
     }
     $db = DB::get();
     parent::__construct($this->table, $db);
     if ($siteId !== false) {
         $this->siteId = intval($siteId);
         $this->accountId = Site::accountId($siteId);
     } else {
         $this->siteId = Site::id();
         $this->accountId = Site::accountId();
     }
     if ($this->useSiteId) {
         $this->whereBy('site_id', $this->siteId);
     }
     if ($this->useAccountId) {
         $this->whereBy('account_id', $this->accountId);
     }
 }
开发者ID:evgeny-v-z,项目名称:framework,代码行数:22,代码来源:TableDataGateway.php

示例2: __construct

 public function __construct(array $values)
 {
     parent::__construct(null, $values);
 }
开发者ID:harp-orm,项目名称:query,代码行数:4,代码来源:Values.php

示例3:

 /**
  * Initialize a new instance of SQLite Connection
  *
  * @param string $path path to db file
  * @param string $password database users password
  *
  * @return SQLite
  */
 function __construct($path, $password = '')
 {
     if (!class_exists('SQLite3')) {
         throw new \RuntimeException('SQLite3 Class not found. Details at http://php.net/manual/de/book.sqlite3.php');
     }
     parent::__construct();
     $this->path = $path;
     $this->password = $password;
 }
开发者ID:BlackyPanther,项目名称:SQL-Class,代码行数:17,代码来源:SQL.class.php

示例4:

 function __construct()
 {
     parent::__construct();
 }
开发者ID:Anon215,项目名称:movim,代码行数:4,代码来源:ContactDAO.php

示例5: __construct

 /**
  * @param string $column
  * @param string $content
  * @param array $parameters
  */
 public function __construct($column, $content, array $parameters = array())
 {
     $this->column = $column;
     parent::__construct($content, $parameters);
 }
开发者ID:harp-orm,项目名称:query,代码行数:10,代码来源:Condition.php

示例6: __construct

 /**
  * @param integer $value
  */
 public function __construct($value)
 {
     parent::__construct((string) (int) $value);
 }
开发者ID:harp-orm,项目名称:query,代码行数:7,代码来源:IntValue.php

示例7: __construct

 public function __construct($bDefaultLogic = true, array &$arrRawSql = null)
 {
     $this->setDefaultLogic($bDefaultLogic);
     parent::__construct($arrRawSql);
 }
开发者ID:JeCat,项目名称:framework,代码行数:5,代码来源:Restriction.php


注:本文中的SQL::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。