作者:隨想 OSO奧索(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-)
{
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);
?>
(6) int MySQL_db_query(string db_name, string query [, int link_id]);
MySQL_db_query()除了提取一個額外的數據庫名稱參數,並在執行查詢之前使它成為缺省的數據庫為,與MySQL_query()類似。
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang") or dIE("Could not connect");
print("Connected successfully");
$query="SELECT * FROM president";
$result=MySQL_db_query("samp_db",$query) or dIE("Query failed");
?>
(7) int MySQL_drop_db(string db_name, int [link_id]);
告訴由link_id標識的MySQL服務器用給定的名稱來刪除數據庫。如果數據庫刪除成功,則返回真;如果出現錯誤,則返回假。必須有對數據庫進行刪除的DROP權限。
要小心這個函數;如果刪除數據庫,它就不存在了,且不能恢復。
使用mysql_query()較使用MySQL_drop_db()發布DROP DATABASE 語句更為適合。
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang") or dIE("Could not connect");
if(MySQL_drop_db("my_db"))
print("Database dropped successfullyn");
else
printf("Error dropping database:%sn",MySQL_error());
?>
(8) int MySQL_errno(int [link_id]);
對於給定的連接,返回含有最近返回狀態的與MySQL相關的函數的錯誤號。零值意味著未出現錯誤。
使用范例
<?PHP
$link=MySQL_pconnect("localhost","sunsoft","suixiang") or dIE("Could not connect");
print("Connected successfully");
$query="SELECT * FROM president";
$result=mysql_query($query) or dIE("Query failed,error code=".MySQL_errno());
?>
本篇文章來源於 52教程網 | http://www.520jcw.cn | 歡迎轉載 | 原文鏈接:http://www.520jcw.cn/html/database/MYSQL/200812/153954.html