程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> 關於MYSQL數據庫 >> PHP操作MYSQL函數手冊大全

PHP操作MYSQL函數手冊大全

編輯:關於MYSQL數據庫
說 明 函 數 名 函 數 詳 細 函 數 說 明 建立數據庫連接 MySQL_connect() resource MySQL_connect([string hostname [:port] [:/path/to/socket] [, string username] [, string passWord]])
示例:$conn = @MySQL_connect("localhost", "username", "passWord") or dir("不能連接到MySQL Server"); 使用該連接必須顯示的關閉連接 建立數據庫連接 MySQL_pconnect() resource MySQL_pconnect([string hostname [:port] [:/path/to/socket] [, string username] [, string passWord]])
示例:$conn = @MySQL_pconnect("localhost", "username", "passWord") or dir("不能連接到MySQL Server"); 使用該連接函數不需要顯示的關閉連接,它相當於使用了連接池 關閉數據庫連接 MySQL_close() $conn = @MySQL_connect("localhost", "username", "passWord") or dIE("不能連接到MySQL Server");
@MySQL_select_db("MyDatabase") or dIE("不能選擇這個數據庫,或數據庫不存在");
echo "你已經連接到MyDatabase數據庫";
MySQL_close();   選擇數據庫 MySQL_select_db() boolean MySQL_select_db(string db_name [, resource link_id])
$conn = @MySQL_connect("localhost", "username", "passWord") or dIE("不能連接到MySQL Server");
@MySQL_select_db("MyDatabase") or dIE("不能選擇這個數據庫,或數據庫不存在");   查詢MySQL MySQL_query() resource MySQL_query (string query, [resource link_id])
$linkId = @MySQL_connect("localhost", "username", "passWord") or dIE("不能連接到MySQL Server");
@MySQL_select_db("MyDatabase") or dIE("不能選擇這個數據庫,或者數據庫不存在");
$query = "select * from MyTable";
$result = MySQL_query($query);
MySQL_close(); 若SQL查詢執行成功,則返回資源標識符,失敗時返回FALSE。若執行更新成功,則返回TRUE,否則返回FALSE 查詢MySQL MySQL_db_query() resource MySQL_db_query(string database, string query [, resource link_id])
$linkId = @mysql_connect("localhost", "username", "passWord") or dIE("不能連接到MySQLServer");
$query = "select * from MyTable";
$result = MySQL_db_query("MyDatabase", $query);
MySQL_close(); 為了使代碼清晰,不推薦使用這個函數調用 獲取和顯示數據 MySQL_result() mixed MySQL_result (resource result_set, int row [, mixed fIEld])
$query = "select id, name from MyTable order by name";
$result = MySQL_query($query);
$c_id = MySQL_result($result, 0, "id");
$c_name = MySQL_result($result, 0, "name"); 最簡單、也是效率最低的數據獲取函數 獲取和顯示數據 MySQL_fetch_row() array MySQL_fetch_row (resource result_set)
$query = "select id, name from MyTable order by name";
$result = MySQL_query($query);
while (list($id, $name) = MySQL_fetch_row($result)) {
        echo( "Name: $name ($id) <br />");
} 函數從result_set中獲取整個數據行,將值放在一個索引數組中。通常會結使list()函數使用 獲取和顯示數據 MySQL_fetch_array() array MySQL_fetch_array (resource result_set [, int result_type])
$query = "select id, name from MyTable order by name";
$result = MySQL_query($query);
while($row = mysql_fetch_array($result, MySQL_ASSOC)) {
        $id = $row[ "id"];
        $name = $row[ "name"];
        echo "Name: $name ($id) <br />";
} result_type的值有:
MySQL_ASSOC: 字段名表示鍵,字段內容為值
MYSQL_NUM: 數值索引數組,操作與MySQL_fetch_ros()函數一樣
MySQL_BOTH: 即作為關聯數組又作為數值索引數組返回。result_type的默認值。 獲取和顯示數據 MySQL_fetch_assoc() array MySQL_fetch_assoc (resource result_set)
相當於調用 mysql_fetch_array(resource, MySQL_ASSOC);   獲取和顯示數據 MySQL_fetch_object() object MySQL_fetch_object(resource result_set)
$query = "select id, name from MyTable order by name";
while ($row = MySQL_fetch_object($result)) {
        $id = $row- >id;
        $name = $row- >name;
        echo "Name: $name ($id) <br />";
} 在操作上與MySQL_fetch_array()相同 所選擇的記錄 MySQL_num_rows() int MySQL_num_rows(resource result_set)
#query = "select id, name from MyTable where id > 65";
$result = MySQL_query($query);
echo "有".MySQL_num_rows($result)."條記錄的ID大於65"; 只在確定select查詢所獲取的記錄數時才有用。 受影響的記錄 MySQL_affected_rows() int MySQL_affected_rows([resource link_id])
$query = "update MyTable set name='CheneyFu' where id>=5";
$result = MySQL_query($query);
echo "ID大於等於5的名稱被更新了的記錄數:".MySQL_affected_rows(); 該函數獲取受INSERT,UPDATE或DELETE更新語句影響的行數 獲取數據庫列表信息 MySQL_list_dbs() resource MySQL_list_dbs([resource link_id])
MySQL_connect("localhost", "username", "passWord");
$dbs = MySQL_list_dbs();
echo "Databases: <br />";
while (list($db) = MySQL_fetch_rows($dbs)) {
        echo "$db <br />";
}   獲取數據庫名 MySQL_db_name() string mysql_db_name(resource result_set, integer index) 該函數獲取在MySQL_list_dbs()所返回result_set中位於指定index索引的數據庫名 獲取數據庫表列表 MySQL_list_tables() resource MySQL_list_tables(string database [, resource link_id])
MySQL_connect("localhost", "username", "passWord");
$tables = MySQL_list_tables("MyDatabase");
while (list($table) = MySQL_fetch_row($tables)) {
        echo "$table <br />";
} 該函數獲取database中所有表的表名 獲取數據庫表名 MySQL_tablename() string MySQL_tablename(resource result_set, integer index)
MySQL_connect("localhost", "username", "passWord");
$tables = MySQL_list_tables("MyDatabase");
$count = -1;
while (++$count < MySQL_numrows($tables)) {
        echo MySQL_tablename($tables, $count). "<br />";
} 該函數獲取MySQL_list_tables()所返回result_set中位於指定index索引的表名 獲取字段信息 MySQL_fetch_fIEld() object MySQL_fetch_field(resource result [, int fIEld_offset])
MySQL_connect("localhost", "username", "passWord");
MySQL_select_db("MyDatabase");
$query = "select * from MyTable";
$result = MySQL_query($query);
$fIElds = MySQL_num_fIElds($result);
for($count = 0; $count < $fIEds; $count++) {
       $fIEld = MySQL_fetch_fIEld($result, $count);
       echo "<p>$field->name $field->type ($fIEld->max_length) </p>";
} 返回的對象共有12個對象屬性:
name: 字段名
table: 字段所在的表
max_length: 字段的最大長度
not_null: 如果字段不能為null,則為1,否則0
primary_key: 如果字段為主鍵,則為1,否則0
unique_key: 如果字段是唯一鍵,則為1, 否則0
multiple_key: 如果字段為非唯一,則為1,否則0
numeric: 如果字段為數值則為1,否則0
blob: 如果字段為BLOB則為1,否則為0
type: 字段的數據類型
unsigned: 如果字段為無符號數則為1,否則為0
zerofill: 如果字段為“零填充”則為1, 否則為0 獲取查詢的字段數 MySQL_num_fIElds() integer MySQL_num_fIElds (resource result_set)
$query = "select id, name from MyTable order by name";
$result = MySQL_query($query);
echo "這個查詢的字段數是:".MySQL_num_fIElds($result)."<br />"; 返回查詢result_set中的字段數 獲取指定表的所有字段的字段名 MySQL_list_fIElds() resource MySQL_list_fIElds (string database_name, string table_name [, resource link_id])
$fIElds = MySQL_list_fIElds("MyDatabase", "MyTable");
echo "數據庫MyDatabase中表MyTable的字段數: ".MySQL_num_fields($fIElds)."<br />";   獲取指定的字段選項 MySQL_fIEld_flags() string MySQL_field_flags (resource result_set, integer fIEld_offset)   獲取指定的字段的最大長度 MySQL_fIEld_len() integer MySQL_field_len (resource result_set, integer fIEld_offset)
$query = "select name from MyTable";
$result = MySQL_query($query);
$row = MySQL_fetch_row($result);
echo mysql_fIEld_len($result, 0)."<br />"; 如果MySQL_fIEld_len($reseult, 0) = 16777215
那麼numer_format(MySQL_fIEld_len($result))等於16,777,215 獲取字段名 MySQL_fIEld_name() string MySQL_field_name (resource result_set, int fIEld_offset)
$query = "select id as PKID, name from MyTable order by name";
$result = MySQL_query($query);
$row = MySQL_fetch_row($result);
echo MySQL_fIEld_name($result, 0); // Result: PKID   獲取字段類型 MySQL_fIEld_type() string MySQL_field_type (resource result_set, int fIEld_offset)
$query = "select id, name from MyTable order by name";
$result = MySQL_query($query);
$row = MySQL_fetch_row($result);
echo MySQL_fIEld_type($result, 0); // Result: int   獲取字段所在表名 MySQL_fIEld_table() string MySQL_field_table (resource result_set, int fIEld_offset)
$query = "select id as PKID, name from MyTable order by name";
$result = MySQL_query($query);
$row = MySQL_fetch_row($result);
echo MySQL_fIEld_table($result, 0); // Result: MyTable

PHP操作MySQL函數手冊大全:

對於MySQL數據庫,用ASP和PHP語言都可以對其進行數據操作,所要實現的目標都是相同的,結果也會一致,但是方法和過程卻有很打的差別;一般來說,ASP的編程、使用以及操作要遠比PHP簡單的多,只有是你想學習網絡編程,掌握ASP是很容易的,也是大多初學者的首選;但是要掌握PHP就不是那麼簡單了。整理盡管ASP也可以操作MySQL數據庫,但是與PHP相比,在速度上可能要比PHP慢一下;在語法上PHP似乎也更復雜。下面我也實現同一數據庫查詢為例,總結一下這兩種語言在操作MySQL數據庫中的實現過程。
   數據庫:gaorui
   數據表:user
   字段:username & passWord
   目的:從同一數據庫中分別查詢出最新插入的3條數據記錄    用PHP實現過程代碼:

<Html>
<body>
<?PHP
$db=MySQL_connect("localhost","root","luo");
MySQL_select_db("gaorui",$db);
MySQL_query("set names 'gb2312'");
$sql="select * from user order by username desc";
$result=MySQL_query($sql,$db);
for($i=0;$i<3;$i++) {
printf("姓名:%s&nbsp;&nbsp;&nbsp;",MySQL_result($result,$i,"username"));
printf("密碼:%s<br />",MySQL_result($result,$i,"passWord"));}
MySQL_free_result($result);
?>
</body>
</Html>

結果:

姓名:西安    密碼:123
姓名:石油    密碼:123
姓名:商務    密碼:123

----------------------------

<?PHP

$ip= $_POST['select'];

$flag= substr($ip, -2);

$MySQL_server_name="172.16.16.16"; //數據庫服務器名稱

$MySQL_username="bill"; // 連接數據庫用戶名

$MySQL_passWord="bill"; // 連接數據庫密碼

$MySQL_database="isd_pttc_info"; // 數據庫的名字

// 連接到數據庫

$conn=mysql_connect($mysql_server_name, $MySQL_username,

$MySQL_passWord);

// 從表中提取信息的sql語句

$strsql="select * from t_pttc_info where ip=\"$ip\";";

// 執行sql查詢

$result=mysql_db_query($MySQL_database, $strsql, $conn);

// 獲取查詢結果

$row=MySQL_fetch_row($result);

echo '<font face="verdana">';

echo '<table border="1" cellpadding="1" cellspacing="2">';

// 顯示字段名稱

echo "\n<tr>\n";

for ($i=0; $i<MySQL_num_fIElds($result); $i++)

echo '<td bgcolor="#AE57A4"><b>'.

MySQL_fIEld_name($result, $i);

echo "</b></td>\n";

echo "</tr>\n";

// 定位到第一條記錄

MySQL_data_seek($result, 0);

// 循環取出記錄

while ($row=MySQL_fetch_row($result))

echo "<tr>\n";

for ($i=0; $i<MySQL_num_fIElds($result); $i++ )

echo '<td bgcolor="#B8B8E8">';

echo "$row[$i]";

echo '</td>';

echo "</tr>\n";

echo "</table>\n";

echo "</font>";

// 釋放資源

MySQL_free_result($result);

// 關閉連接

MySQL_close();

?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved