(1) int MySQL_affected_rows([int link_id]);
在給定的連接中,返回由最近的DELETE、INSERT、REPLACE或者UPDATE語句所作用的行數。如果沒有行 被修改,則MySQL_affected_rows()返回0,如果出現錯誤,則返回-1。
在SELECT查詢之後,MySQL_affected_rows()返回所選擇的行數。但一般是與SELECT語句一道使用
MySQL_num_rows().
使用范例:
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang")
or dIE("Could not connect");
MySQL_select_db("samp_db") or dIE("Could not select database");
$query="INSERT INTO
member(last_name,first_name,expiration)"."VALUES(''Brown'',''Marcia'',''2002-6-3'')";
$result=MySQL_query($query) or dIE("Query failed");
printf("%d row%s insertedn",mysql_affected_rows(),MySQL_affected_rows()==1?"
":"s");
?>
(2) int MySQL_close(int[link_id]);
關閉由link_id標識的與MySQL服務器的連接。如果沒有指定連接,則mysql_close()關閉最近打開的連接。如果成功,則mysql_close()返回真,失敗則返回假。對由mysql_pconnect()打開的永久連接,mysql_close()忽略相應的關閉請求,只是返回值。如果要關閉一個連接,就應該用mysql_connect()而不是MySQL_pconnect()來打開它。
使用范例:
<?PHP
$link=MySQL_connect("localhost","sunsoft","suixiang")
or dIE("Could not connect");
print("Connected successfully");
MySQL_close($link);
?>
<EPRO_SPLIT>
(3) int MySQL_connect(string [hostname] [:port], string [username], string [passWord]);
本函式建立與 MySQL 伺服器的連線。其中所有的參數都可省略。當使用本函式卻不加任何參數時,參數 hostname 的內定值為 localhost、參數 username 的內定值為 PHP 執行行程的擁有者、參數 passWord 則為空字串 (即沒有密碼)。而參數 hostname 後面可以加冒號與埠號,代表使用那個埠與 MySQL 連接。當然在使用資料庫時,早點使用 MySQL_close() 將連線關掉可以節省資源。
使用范例
這是一位未具名網友提供的范例 (18-Feb-1999)
<?PHP
$dbh = MySQL_connect(''localhost:3306'',''mcclain'',''standard'');
MySQL_select_db(''admreqs'');
$query = "insert into requests(date, request, email, priority,status) values
(NOW(),''$description'', ''$email'', ''$priority'', ''NEW'')";
$res = MySQL_query($query, $dbh);
$query = "select max(id) from requests";
$res = MySQL_query($query, $dbh);
$err = MySQL_error();
if($err){
echo "發生錯誤,請通知<a href=mailto:[email protected]>站長</a>";
}
$row = MySQL_fetch_row($res);
echo "未來您使用的號碼為: ".$row[0];
?>
(4) int MySQL_create_db(string db_name [, int link_id]);
告訴由link_id標識的MySQL服務器用給定的名稱來創建數據庫。如果數據庫創建成功,則返回真;如果出現錯誤,則返回假。必須在數據庫有創建它的CREATE權限。可能利用mysql_query()較利用MySQL_create_db()發布CREATE DATABASE 語句更為適合。
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang");
or dIE("Could not connect");
if(MySQL_create_db("my_db"))
print("Database created successfullyn");
else
print("Error creating database:%sn",MySQL_error());
?>
(5) int MySQL_data_seek(int result_id, int row_num);
由SELECT查詢返回的每個結果集都有一個行游標,指示下一個提取行的函數(mysql_fetch_array()、mysql_fetch_object()或者mysql_fetch_row())調用將返回哪一行。mysql_data_seek()將給定結果集的指針設置到給定的行。行號的范圍為0到mysql_num_rows()-1。如果行號合法,則MySQL_data_seek()返回真,否則返回假。
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang")
or dIE("Could not connect");
MySQL_select_db("samp_db") or dIE("Could not select database");
$query="SELECT last_name,first_name FROM president");
$result=MySQL_query($query) or dIE("Query failed");
for($i=MySQL_num_rows($result)-1;$i>=0;$i-)
{
MySQL教程是:MySQL數據庫函數詳解(1)。 if(!MySQL_data_seek($result,$i);
{
printf("Cannot seek to row %dn",$i);
continue;
}
if(!$row=MySQL_fetch_object($result)))
continue;
printf("%d %s<BR>n",$row->last_name,$row->first_name);
}
MySQL_free_result($result);
?>