程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 連接到 MySQL 數據庫

連接到 MySQL 數據庫

編輯:MySQL綜合教程

連接到 MySQL 數據庫

創建一個連接到MySQL數據庫
在您可以存取數據庫中的數據,您必須創建一個連接到數據庫。

在PHP中,這一點與mysql_connect ( )函數。

語法

mysql_connect(servername,username,password);
ParameterDescriptionservernameOptional. Specifies the server to connect to. Default value is "localhost:3306"usernameOptional. Specifies the username to log in with. Default value is the name of the user that owns the server processpasswordOptional. Specifies the password to log in with. Default is ""
 

注:有更多的可用參數,但上面列出的是最重要的。訪問我們充分的PHP MySQL的參考更詳細的信息。

例如
在下面的例子中,我們存儲連接在一個變量( $控制)以供日後使用的腳本。該“死”的一部分將被處死,如果連接失敗:

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
// some code
?>
 

關閉連接
連接將自動關閉時,腳本的目的。要關閉連接之前,請使用mysql_close ( )函數:

 

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }
// some code
mysql_close($con);
?>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved