PHP与mysql数据库连接
1、数据库中常用的mysql操作函数
(1)连接数据库服务器
resource mysql_connect(string hostname,string username,string password)
(2)关闭服务器连接
bool mysql_close(resource link)
(3)选择当前操作的服务器
bool mysql_select_db(string database_name,resource link);
(4)发送sql语句
{bool/resource} mysql_query(string sql,[resource link])
(5)查看影响的行数:
int mysql_affected_rows([resource link])
(6)当使用insert语句时,可以通过该函数查看插入行的id:
int mysql_insert_id([resource link])
(7)查看该sql语句查询到的表记录行数
int mysql_num_rows(resource result)
(8) 释放结果集资源
bool mysql_free_result(resource result)
(9)遍历结果集中的数据:
array mysql_fetch_row(resource result)
array mysql_fetch_array(resource result)