MySQL函数库:mysql_connect

mysql_connect

(PHP3 , PHP4)

mysql_connect ---&">nbsp; 开启MySQL伺服器连线

语法 : int mysql_connect ([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_connect( ),将不会建立新的连结,但会传回先前开启的结连identifier来替代。

程式执行结束后,将会立刻关闭连结到伺服器,除非提早呼叫mysql_close( )来关闭。

Example :

<?php

$link = mysql_connect ("kraemer", "marliesle", "secret") or die ("Could not connect");

print ("Connected successfully");

mysql_close ($link);

?>

参考 :  mysql_pconnect( )  mysql_close( )

时间: 2024-09-15 09:46:06

MySQL函数库:mysql_connect的相关文章

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_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_pconnect

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

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_field_type

mysql_field_type (PHP3 , PHP4) mysql_field_type ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 取得指定栏位的型态 语法 : string mysql_field_type (int result, int field_offset) 说明 : mysql_field_type( )类似于mysql_field_name( ),参数也一样,但是此函数所传回的是

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_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_change_user

mysql_change_user (PHP3 >= 3.0.13) mysql_change_user ---&http://www.aliyun.com/zixun/aggregation/37954.html">nbsp; 更改连线的使用者 语法 : int mysql_change_user (string user, string password [, string database [, int link_identifier]]) 说明 : mysql_cha