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


PHP DBObject::stGetTableName方法代码示例

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


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

示例1: _processSearch

 protected function _processSearch()
 {
     $class = $this->_getSearchClass();
     $table = DBObject::stGetTableName($class);
     $fieldId = $class::stGetFieldConfigFiltered(array("identifier" => true));
     $select = "SELECT {$this->fields} FROM {$table}";
     $where = "";
     foreach ($this->filters as $field => $filter) {
         $field = DBObject::stObjFieldToDBField($field);
         $op = $filter[0];
         if (is_array($filter[1])) {
             $whereField = "(";
             foreach ($filter[1] as $value) {
                 // TODO soporte para OR ?
                 $whereField = $whereField . "'" . $value . "'" . " AND ";
             }
             $whereField = substr($whereField, 0, -5) . ")";
         } else {
             $whereField = "'" . $filter[1] . "'";
         }
         $where = $where . $field . " " . $op . " " . $whereField . " AND ";
     }
     if ($where != "") {
         $select = $select . " WHERE " . substr($where, 0, -5);
     }
     $offset = ($this->page - 1) * $this->limit;
     $select = $select . " LIMIT {$offset},{$this->limit}";
     $mysqlParams = static::_stGetMySQLParams();
     $search = DBMySQLConnection::stVirtualConstructor($mysqlParams)->query($select);
     // Anotamos los resultados
     $this->count = $search->num_rows;
     // Guardamos la búsqueda
     $this->search = $search;
 }
开发者ID:jilgue,项目名称:ownWebAppServices,代码行数:34,代码来源:DBObjectSearch.php

示例2: _stGetMySQLParams

 /**
  * Es publica porque también lo usan clases "hermanas" como DBObjectSearch
  */
 static function _stGetMySQLParams()
 {
     $class = get_called_class();
     $fieldId = $class::stGetFieldConfigFiltered(array("identifier" => true));
     $table = DBObject::stGetTableName($class);
     return array("table" => $table, "fieldId" => $fieldId);
 }
开发者ID:jilgue,项目名称:ownWebAppServices,代码行数:10,代码来源:DBObject.php

示例3: _getTableSchema

 private function _getTableSchema($config, $class)
 {
     $table = "CREATE TABLE `" . DBObject::stGetTableName($class) . "` ( \n";
     $DBColumns = $this->_getColumnsSchema($config);
     // Añadimos la clave primaria
     $DBColumns[] = $this->_getPrimaryKey($config);
     $table = $table . implode(",\n", $DBColumns);
     $table = $table . "\n ) ENGINE=InnoDB DEFAULT CHARSET=latin1";
     return $table;
 }
开发者ID:jilgue,项目名称:ownWebAppServices,代码行数:10,代码来源:DBCreateSchema.php


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