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


PHP msql_list_tables函數代碼示例

本文整理匯總了PHP中msql_list_tables函數的典型用法代碼示例。如果您正苦於以下問題:PHP msql_list_tables函數的具體用法?PHP msql_list_tables怎麽用?PHP msql_list_tables使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: getSpecialQuery

 /**
  * Obtain a list of a given type of objects
  *
  * @param string $type  the kind of objects you want to retrieve
  *
  * @return array  the array containing the list of objects requested
  *
  * @access protected
  * @see DB_common::getListOf()
  */
 function getSpecialQuery($type)
 {
     switch ($type) {
         case 'databases':
             $id = @msql_list_dbs($this->connection);
             break;
         case 'tables':
             $id = @msql_list_tables($this->dsn['database'], $this->connection);
             break;
         default:
             return null;
     }
     if (!$id) {
         return $this->msqlRaiseError();
     }
     $out = array();
     while ($row = @msql_fetch_row($id)) {
         $out[] = $row[0];
     }
     return $out;
 }
開發者ID:BackupTheBerlios,項目名稱:saecommerce,代碼行數:31,代碼來源:msql.php

示例2: list_tables

 /**
  * db::list_tables()
  * 
  * @param $dbname
  * @return 
  **/
 function list_tables($dbname)
 {
     global $GonxAdmin;
     switch ($GonxAdmin["dbtype"]) {
         case "mysql":
             $this->dbResultLine = @mysql_list_tables($dbname);
             break;
         case "postgresql":
             $sql = "SELECT relname FROM pg_class WHERE relname !~ '^pg_'";
             $this->dbResultLine = $this->query($sql);
             break;
         case "oracle":
             $sql = "select * from user_objects where object_type = 'TABLE';";
             $this->dbResultLine = $this->query($sql);
             break;
         case "sqlite":
             break;
         case "mssql":
             $this->dbResultLine = @msql_list_tables($dbname);
             break;
     }
     // switch
     return $this->dbResultLine;
 }
開發者ID:469306621,項目名稱:Languages,代碼行數:30,代碼來源:database_abstraction_class.php


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