|
復(fù)制代碼 代碼如下:
<?php
$db_host='hostname is database server ';
$db_database='database name';
$db_username='username';
$db_password='password';
$connection=mysql_connect($db_host,$db_username,$db_password);//連接到數(shù)據(jù)庫
mysql_query("set names 'utf8'");//編碼轉(zhuǎn)化
if(!$connection){
die("could not connect to the database:</br>".mysql_error());//診斷連接錯誤
}
$db_selecct=mysql_select_db($db_database);//選擇數(shù)據(jù)庫
if(!$db_selecct)
{
die("could not to the database</br>".mysql_error());
}
$query="select * from msu ";//構(gòu)建查詢語句
$result=mysql_query($query);//執(zhí)行查詢
if(!$result)
{
die("could not to the database</br>".mysql_error());
}
// array mysql_fetch_row(resource $result);
while($result_row=mysql_fetch_row(($result)))//取出結(jié)果并顯示
{
$num=$result_row[0];
$age=$result_row[1];
$name=$result_row[2];
echo "<tr>";
echo "<td>$num</td>";
echo "<td>$age</td>";
echo "<td>$name</td>";
echo "</tr>";
}
mysql_close($connection);//關(guān)閉連接
?>
下面是帶詳細(xì)說明的代碼
復(fù)制代碼 代碼如下:
$connect = mysql_connect("127.0.0.1","root","") or die ("鏈接錯誤");//開啟鏈接到mysql
$select_db = mysql_select_db("數(shù)據(jù)庫名",$connect);//如果不特別聲明連接標(biāo)示符,則默認(rèn)上一次打開的鏈接
//執(zhí)行SQL語句!
$sql = "SELECT * FROM test"
$query = mysql_query($sql,$connect) or die(mysql_error());
//兩種查詢函數(shù)array/row區(qū)別
$row1 = mysql_fetch_row($query);
print_r($row1);//只能保存數(shù)組中的標(biāo)號
$row2 = mysql_fetch_array($query);
print_r($row2);//可以保存數(shù)組中的標(biāo)號,和字段名
//循環(huán)輸出while輸出到空位置
while($row1){
print_r($row1);
}
mysql_query("SET NAMES 'UTF-8'");
//用于計算查詢結(jié)果的數(shù)目
mysql_num_rows($query);
//傳回最后一次使用INSERT指令的IP
mysql_insert_id($query);
//取得數(shù)據(jù)庫名
mysql_tablename($query);
//返回錯誤信息
mysql_error();
//關(guān)閉鏈接
mysql_close();
php連接mySQL常用函數(shù)
Mysql可通過兩種方式通過php與web相連,一種通過php的Mysql相關(guān)函數(shù),另一種通過php的ODBC相關(guān)函數(shù)。
相關(guān)函數(shù)如下:
MYSQL函數(shù)
mysql_affected_rows: 得到 MySQL 最后操作影響的列數(shù)目。
mysql_close: 關(guān)閉 MySQL 伺服器連線。
mysql_connect: 開啟 MySQL 伺服器連線。
mysql_create_db: 建立一個 MySQL 新資料庫。
mysql_data_seek: 移動內(nèi)部傳回指標(biāo)。
mysql_db_query: 送查詢字串 (query) 到 MySQL 資料庫。
mysql_drop_db: 移除資料庫。
mysql_errno: 傳回錯誤訊息代碼。
mysql_error: 傳回錯誤訊息。
mysql_fetch_array: 傳回陣列資料。
mysql_fetch_field: 取得欄位資訊。
mysql_fetch_lengths: 傳回單列各欄資料最大長度。
mysql_fetch_object: 傳回物件資料。
mysql_fetch_row: 傳回單列的各欄位。
mysql_field_name: 傳回指定欄位的名稱。
mysql_field_seek: 設(shè)定指標(biāo)到傳回值的某欄位。
mysql_field_table: 獲得目前欄位的資料表 (table) 名稱。
mysql_field_type: 獲得目前欄位的型態(tài)。
mysql_field_flags: 獲得目前欄位的旗標(biāo)。
mysql_field_len: 獲得目前欄位的長度。
mysql_free_result: 釋放傳回占用記憶體。
mysql_insert_id: 傳回最后一次使用 INSERT 指令的 ID。
mysql_list_fields: 列出指定資料表的欄位 (field)。
mysql_list_dbs: 列出 MySQL 伺服器可用的資料庫 (database)。
mysql_list_tables: 列出指定資料庫的資料表 (table)。
mysql_num_fields: 取得傳回欄位的數(shù)目。
mysql_num_rows: 取得傳回列的數(shù)目。
mysql_pconnect: 開啟 MySQL 伺服器長期連線。
mysql_query: 送出一個 query 字串。
mysql_result: 取得查詢 (query) 的結(jié)果。
mysql_select_db: 選擇一個資料庫。
mysql_tablename: 取得資料表名稱。
ODBC函數(shù)
使用ODBC函數(shù)需安裝MYSQL ODBC
odbc_autocommit: 開關(guān)自動更動功能。
odbc_binmode: 設(shè)定二進(jìn)位資料處理方式。
odbc_close: 關(guān)閉 ODBC 連結(jié)。
odbc_close_all: 關(guān)閉所有 ODBC 連結(jié)。
odbc_commit: 更動 ODBC 資料庫。
odbc_connect: 連結(jié)至 ODBC 資料庫。
odbc_cursor: 取得游標(biāo)名。
odbc_do: 執(zhí)行 SQL 指令。
odbc_exec: 執(zhí)行 SQL 指令。
odbc_execute: 執(zhí)行預(yù)置 SQL 指令。
odbc_fetch_into: 取得傳回的指定列。
odbc_fetch_row: 取得傳回一列。
odbc_field_name: 取得欄位名稱。
odbc_field_type: 取得欄位資料形態(tài)。
odbc_field_len: 取得欄位資料長度。
odbc_free_result: 釋出傳回資料的記憶體。
odbc_longreadlen: 設(shè)定傳回欄的最大值。
odbc_num_fields: 取得欄位數(shù)目。
odbc_pconnect: 長期連結(jié)至 ODBC 資料庫。
odbc_prepare: 預(yù)置 SQL 指令。
odbc_num_rows: 取得傳回列數(shù)目。
odbc_result: 取得傳回資料。
odbc_result_all: 傳回 HTML 表格資料。
odbc_rollback: 撤消當(dāng)前交易。
odbc_setoption: 調(diào)整 ODBC 設(shè)定。
php技術(shù):php連接數(shù)據(jù)庫代碼應(yīng)用分析,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。