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


PHP Zend_Db_Adapter_Abstract::listTables方法代码示例

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


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

示例1: __construct

 /**
  * @param null $options
  * @param bool $autoLoad
  */
 public function __construct($options = null, $autoLoad = true)
 {
     $this->_db = Zend_Db_Table::getDefaultAdapter();
     $this->_options = $options;
     if (isset($options['blacklist']) && !isset($options['whitelist'])) {
         if (is_array($options['blacklist'])) {
             $this->_blackList = $options['blacklist'];
         } else {
             $this->_blackList[] = (string) $options['blacklist'];
         }
     } elseif (isset($options['whitelist']) && !empty($options['whitelist'])) {
         if (is_array($options['whitelist'])) {
             $this->_whiteList = $options['whitelist'];
         } else {
             $this->_whiteList[] = (string) $options['whitelist'];
         }
     }
     if ($autoLoad) {
         $tables = $this->_db->listTables();
         foreach ($tables as $table) {
             $scheme = $this->_db->describeTable($table);
             $this->addTable($table, $scheme);
         }
     }
 }
开发者ID:shahmaulik,项目名称:zfcore,代码行数:29,代码来源:Database.php

示例2: getSchemaVersion

 /**
  * Fetch the schema version of the current database
  *
  * @return string
  */
 public final function getSchemaVersion()
 {
     if (!in_array('schema_info', $this->dbAdapter->listTables())) {
         $this->createTable('schema_info', array('primary' => false), array(array('version', 'string')));
         $this->dbAdapter->insert('schema_info', array('version' => '00000000000000'));
         return '00000000000000';
     }
     return $this->dbAdapter->fetchOne($this->dbAdapter->select()->from('schema_info', 'version')->limit(1));
 }
开发者ID:humansky,项目名称:qframe,代码行数:14,代码来源:Adapter.php

示例3: _isTableExists

 /**
  *
  * @param string $tableName
  * @return boolean
  */
 protected final function _isTableExists($tableName)
 {
     if (!self::$_tablesList) {
         self::$_tablesList = array_map('strtolower', $this->_db->listTables());
     }
     return in_array(strtolower($tableName), self::$_tablesList);
 }
开发者ID:Sywooch,项目名称:forums,代码行数:12,代码来源:20150107.php

示例4: loadSchemaFromDb

 public static function loadSchemaFromDb(Zend_Db_Adapter_Abstract $db, Zend_Cache_Core $cache)
 {
     static $tables = array();
     if (empty($tables)) {
         if (!($tables = $cache->load('tables'))) {
             $tables = $db->listTables();
             $cache->save($tables, 'tables');
         }
     }
     foreach ($tables as $table) {
         if (!isset(self::$schema[$table])) {
             if (!($tableStructure = $cache->load('tables_' . $table))) {
                 $tableStructure = $db->describeTable($table);
                 $cache->save($tableStructure, 'tables_' . $table);
             }
             self::$schema[$table] = $tableStructure;
         }
     }
 }
开发者ID:hthetiot,项目名称:basezf,代码行数:19,代码来源:Auto.php

示例5: getTableNames

 /**
  * List Tables
  * 
  * @return array
  */
 public function getTableNames()
 {
     return $this->_connection->listTables();
 }
开发者ID:mtday,项目名称:timesheet-system,代码行数:9,代码来源:Generic.php

示例6: indexAction

 public function indexAction()
 {
     $this->view->tables = $this->_db->listTables();
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:4,代码来源:IndexController.php

示例7: listTables

 /**
  * Returns a list of the tables in the database.
  *
  * @return array
  */
 public function listTables()
 {
     return $this->_adapter->listTables();
 }
开发者ID:cwcw,项目名称:cms,代码行数:9,代码来源:Abstract.php

示例8: getTables

 /**
  * Retrieve table list
  *
  * @return array
  */
 public function getTables()
 {
     return $this->_read->listTables();
 }
开发者ID:ronseigel,项目名称:agent-ohm,代码行数:9,代码来源:Mysql4_Db.php

示例9: testListTables

 /**
  * Test the Adapter's listTables() method.
  * Fetch the list of tables and verify that the test table exists in
  * the list.
  */
 public function testListTables()
 {
     $table = $this->getIdentifier(self::TABLE_NAME);
     $tables = $this->_db->listTables();
     $this->assertContains($table, $tables);
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:11,代码来源:Common.php

示例10: dropTables

/**
 * Drop database tables.
 *
 * @param Zend_Db_Adapter_Abstract $db
 * @param string $dbType
 * @throws Zend_Exception
 */
function dropTables($db, $dbType)
{
    $db->beginTransaction();
    try {
        $tables = $db->listTables();
        foreach ($tables as $table) {
            if ($dbType === 'mysql') {
                $db->query('DROP TABLE IF EXISTS `' . $table . '` CASCADE;');
            } elseif ($dbType === 'pgsql') {
                $db->query('DROP TABLE IF EXISTS "' . $table . '" CASCADE;');
            } elseif ($dbType === 'sqlite' && $table != 'sqlite_sequence') {
                $db->query('DROP TABLE IF EXISTS "' . $table . '";');
            } else {
                continue;
            }
        }
        $db->commit();
    } catch (Zend_Exception $exception) {
        $db->rollBack();
        throw $exception;
    }
}
开发者ID:josephsnyder,项目名称:Midas,代码行数:29,代码来源:DatabaseSetup.php


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