MySQL函数库:mysql_pconnect

mysql_pconnect

(PHP3 , PHP4)

mysql_pconnect ---&">nbsp; 开启MySQL伺服器持续连线

语法 : int mysql_pconnect ([string hostname [:port] [:/path/to/socket] [, string username [, string password]]])

说明 :

成功则传回一正数的MySQL连结identifier,失败则传回错误讯息。

mysql_connect( )建立MySQL伺服器连结,所有的参数都是非必需的,如果都没给参数值,则预设上假定是( 'localhost' , 拥有伺服器处理的使用者名称 , 没有密码)。

hostname也可以包含埠号,例如 : "hostname:port"或是socket路径,例如 : ":/path/to/socket"

注意 : PHP3.0B4中增加了提供":port" , PHP3.0.10中增加了提供":/path/to/socket",你可使用'@'(@mysql_connect( ) )来抑制错误时所传回的讯息。

mysql_pconnect( )与mysql_connect( )很相似,两者间主要有二个不同之处。

首先,当连结时函数将首先试着去找出相同主机、使用者名称、密码的先前已开启的连结,如果有找到,则此 identifier 将被传回,来替代开启一个新的连结。

次之,当程式执行完成后将不会关闭连结到MySQL伺服器,反而会保留下来给之后使用。(mysql_close( )将无法关闭以mysql_pconnect( )所开启的连结)

时间: 2024-12-20 23:54:49

MySQL函数库:mysql_pconnect的相关文章

MySQL函数库:mysql_errno

mysql_errno (PHP3 , PHP4) mysql_errno --- 从先前MySQL操作传回错误讯息代号 语法 : int mysql_errno ([int link_identifier]) 说明 : 从最后的MySQL函数传回错误讯息代号,如果没有发生错误则传回0(zero). 从MySQL资料库所传回来的错误可以使用mysql_errno( )来获得错误代号,注意 : 此函数只从最近执行MySQL函数 (不包含mysql_error( )与mysql_errno( ) )

MySQL函数库:mysql_close

mysql_close (PHP3 , PHP4) mysql_close ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 关闭MySQL连线 语法 : int mysql_close ([int link_identifier]) 说明 : 成功则传回true,失败则传回false. mysql_close( )关闭连结到MySQL资料库的连线,如果没有指定link_identifier,将会关闭最后与M

MySQL函数库:mysql_connect

mysql_connect (PHP3 , PHP4) mysql_connect ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 开启MySQL伺服器连线 语法 : int mysql_connect ([string hostname [:port] [:/path/to/socket] [, string username [, string password]]]) 说明 : 成功则传回一正数的My

MySQL函数库:mysql_select_db

mysql_select_db (PHP3 , PHP4) mysql_select_db ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 选择一个资料库 语法 : int mysql_select_db (string database_name [, int link_identifier]) 说明 : 成功则传回true,失败则传回false. mysql_select_db( )设定在伺服器上现行的

MySQL函数库:mysql_result

mysql_result (PHP3 , PHP4) mysql_result ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 取得结果资料 语法 : int mysql_result (int result, int row [, mixed field]) 说明 : mysql_result( )从MySQL结果传回一格(cell)的内容,参数field可以是栏位的偏移量(offset).栏位的名称.或

MySQL函数库:mysql_query

mysql_query mysql_query ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 送出MySQL查询 语法 : int mysql_query (string query [, int link_identifier]) 说明 : mysql_query( )送出查询到伺服器上现行的资料库,如果 link_identifier没有指定,则假定是最后开启的连结,如果是没有开启的连结,此函数会试着

MySQL函数库:mysql_db_query

mysql_db_query (PHP3 , PHP4) mysql_db_query ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 送出MySQL查询 语法 : int mysql_db_query (string database, string query [, int link_identifier]) 说明 : 成功则传回一正数的MySQL查询结果identifier,失败则传回false. m

MySQL函数库:mysql_data_seek

mysql_data_seek (PHP3 , PHP4) mysql_data_seek ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 移动内部指标 语法 : int mysql_data_seek (int result_identifier, int row_number) 说明 : 成功则传回true,失败则传回false. mysql_data_seek( )移动MySQL内部的列指标到指定列的

MySQL函数库:mysql_create_db

mysql_create_db (PHP3 , PHP4) mysql_create_db ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 新增一个MySQL资料库 语法 : int mysql_create_db (string database name [, int link_identifier]) 说明 : mysql_create_db( )试着在伺服器上建立一个新的资料库. Example :