@mysql_connect("localhost","root","")or die("connection fail");
@mysql_select_db("qfdb")or die("database dose not exits");
$myquery=@mysql_query("select*from userinfo")or die("the statement failed");
mysql_close();
?>
1.另一種執(zhí)行sql語句:resourc mysql_db_query(string $database,string $query[,resource $link_identifier])
database為要執(zhí)行sql語句的數(shù)據(jù)庫逞怨,query為要執(zhí)行的sql語句,link_identifier為數(shù)據(jù)庫連接標識符福澡,若沒有設置該參數(shù)叠赦,函數(shù)將打開上一個已創(chuàng)建的數(shù)據(jù)庫連接,若找不到已打開的數(shù)據(jù)庫連接革砸,則嘗試以無參數(shù)方式調(diào)用mysql_connect()函數(shù)創(chuàng)建一個數(shù)據(jù)庫連接除秀。
2.獲取結(jié)果集中的記錄數(shù)??int mysql_num_rows(resource $result)
獲取所影響到的記錄數(shù):int mysql_affected_rows([resource $link_identifier])
3.獲取結(jié)果集中的數(shù)據(jù) mixed mysql_result(resource $result,int $row[,mixed $field])
4.逐行獲取結(jié)果集中的記錄:array mysql_fetch_row(resource $result);
5.獲取數(shù)據(jù)庫的信息:resource mysql_list_dbs([,resource $link_identifier])
6.獲取數(shù)據(jù)表的信息:resource mysql_list_tables(string $database[,resource $link_identifier])
7.獲取數(shù)據(jù)庫表 列的信息:int mysql_num_fields(resource $result)
獲取列的名稱:string mysql_field_name(resource $result,int $field_index);
獲取列的長度:int mysql_field_len(resource $result,int $field_offset)
獲取列的類型:int mysql_field_type(resource $result,int $field_offset)