MySQL資料庫函數詳解(1)

來源:互聯網
上載者:User
mysql|函數|資料|資料庫|詳解 (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);
?>


(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:webmaster@my.site>站長</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個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: 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.