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


PHP JDatabaseDriver::renameTable方法代碼示例

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


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

示例1: renameTable

 /**
  * Renames a table in the database.
  *
  * @param   string  $oldTable  The name of the table to be renamed
  * @param   string  $newTable  The new name for the table.
  * @param   string  $backup    Non-MySQL: Table prefix
  * @param   string  $prefix    Non-MySQL: For the table - used to rename constraints in non-mysql databases
  *
  * @return  self               Returns this object to support chaining.
  *
  * @throws  \RuntimeException
  */
 public function renameTable($oldTable, $newTable, $backup = null, $prefix = null)
 {
     $this->_db->renameTable($oldTable, $newTable, $backup, $prefix);
     return $this;
 }
開發者ID:bobozhangshao,項目名稱:HeartCare,代碼行數:17,代碼來源:CmsDatabaseDriver.php

示例2: backupDatabase

 /**
  * Method to backup all tables in a database with a given prefix.
  *
  * @param   JDatabaseDriver  $db      JDatabaseDriver object.
  * @param   string           $prefix  Database table prefix.
  *
  * @return  boolean  True on success.
  *
  * @since    3.1
  */
 public function backupDatabase($db, $prefix)
 {
     $return = true;
     $backup = 'bak_' . $prefix;
     // Get the tables in the database.
     $tables = $db->getTableList();
     if ($tables) {
         foreach ($tables as $table) {
             // If the table uses the given prefix, back it up.
             if (strpos($table, $prefix) === 0) {
                 // Backup table name.
                 $backupTable = str_replace($prefix, $backup, $table);
                 // Drop the backup table.
                 try {
                     $db->dropTable($backupTable, true);
                 } catch (RuntimeException $e) {
                     JFactory::getApplication()->enqueueMessage(JText::sprintf('INSTL_DATABASE_ERROR_BACKINGUP', $e->getMessage()), 'notice');
                     $return = false;
                 }
                 // Rename the current table to the backup table.
                 try {
                     $db->renameTable($table, $backupTable, $backup, $prefix);
                 } catch (RuntimeException $e) {
                     JFactory::getApplication()->enqueueMessage(JText::sprintf('INSTL_DATABASE_ERROR_BACKINGUP', $e->getMessage()), 'notice');
                     $return = false;
                 }
             }
         }
     }
     return $return;
 }
開發者ID:klas,項目名稱:joomla-cms,代碼行數:41,代碼來源:database.php

示例3: backupDatabase

 /**
  * Method to backup all tables in a database with a given prefix.
  *
  * @param   JDatabaseDriver  $db      JDatabaseDriver object.
  * @param   string           $name    Name of the database to process.
  * @param   string           $prefix  Database table prefix.
  *
  * @return  boolean  True on success.
  *
  * @since	3.0
  */
 public function backupDatabase($db, $name, $prefix)
 {
     $return = true;
     $backup = 'bak_' . $prefix;
     // Get the tables in the database.
     $tables = $db->getTableList();
     if ($tables) {
         foreach ($tables as $table) {
             // If the table uses the given prefix, back it up.
             if (strpos($table, $prefix) === 0) {
                 // Backup table name.
                 $backupTable = str_replace($prefix, $backup, $table);
                 // Drop the backup table.
                 try {
                     $db->dropTable($backupTable, true);
                 } catch (RuntimeException $e) {
                     $this->setError($e->getMessage());
                     $return = false;
                 }
                 // Rename the current table to the backup table.
                 try {
                     $db->renameTable($table, $backupTable, $backup, $prefix);
                 } catch (RuntimeException $e) {
                     $this->setError($e->getMessage());
                     $return = false;
                 }
             }
         }
     }
     return $return;
 }
開發者ID:rasiodesign,項目名稱:joomla-cms,代碼行數:42,代碼來源:database.php


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