php 擷取mysql資料庫資訊代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
$dbs = mysql_list_dbs(); //調用mysql_list_dbs函數
while ($array = mysql_fetch_row($dbs)) //迴圈輸出所有的資料庫名稱
{
echo "$array[0]<BR>";
}
?>

複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
$dbs = mysql_list_tables("test"); //調用mysql_list_tables函數
while ($array = mysql_fetch_row($dbs)) //迴圈輸出所有的表名稱
{
echo "$array[0]<BR>";
}
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427"); //串連伺服器
mysql_select_db("test"); //選擇資料庫
$result = mysql_query("SELECT * FROM tablename1"); //執行查詢操作
echo mysql_num_fields($result); //擷取列的數目
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_name($result,0); //擷取列的名稱
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_type($result,0); //擷取列的資料類型
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_len($result,0); //擷取列的長度
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427");
mysql_select_db("test");
$result = mysql_query("SELECT * FROM tablename1");
echo mysql_field_flag($result,0); //擷取列的標誌
?>

複製代碼 代碼如下:<?php
mysql_connect("localhost","root","1981427"); //串連伺服器
mysql_select_db("test"); //選擇資料庫
echo "<table border='1'>"; //輸出表頭
echo "<tr><th>列名</th><th>類型</th><th>長度</th><th>標誌</th>";
$result = mysql_query("SELECT * FROM tablename1"); //在mytable表上執行SQL語句
$fields = mysql_num_fields($result); //獲得列的數目
for($i=0; $i<$fields; $i++) //迴圈獲得各列資訊
{
//獲得列的各個屬性
$name = mysql_field_name($result,$i); //獲得列的名稱
$type = mysql_field_type($result,$i); //獲得列的類型
$length = mysql_field_len($result,$i); //獲得列的長度
$flags = mysql_field_flags($result,$i); //獲得列的標誌
echo "<tr><td>$name</td>
<td>$type</td>
<td>$length</td>
<td>$flags</td></tr>";
//輸出資料行的資訊
}
echo "</table>";
mysql_close(); //關閉與資料庫的串連
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.