(PHP 4, PHP 5, PECL odbtp >= 1.1.1)
mssql_connect — ��MS SQL server����
$servername
[, string $username
[, string $password
[, bool $new_link
= false
]]]] ) : resourcemssql_connect() ����һ��MS SQL server���ӡ�
���ӻ��ڳ���ִ�н���֮��ر�, ������֮ǰ�Ѿ�ͨ������mssql_close()�رա�
servername
������,��������һ���˿ں� e.g. ����:�˿ں�(hostname:port) (Linux), �� ����,�˿ں�(hostname,port) (Windows).
username
�û�����
password
���롣
new_link
����ڶ��ε���mssql_connect()ʹ����ͬ�IJ����� ���Ὠ���µ����ӣ����ǽ�֮ǰ�Ѿ������ӱ�ʶ���ء������������ֵ�����ģ���ʹ�õ��� mssql_connect()���ǻὨ���µ����ӣ� �������mssql_connect()ʹ����֮ǰͬ���IJ�����
����һ��������Ϊ�ɹ�, ���� FALSE
�ʹ�����Ϣ.
�汾 | ˵�� |
---|---|
5.1.0 |
new_link ��������
|
Example #1 mssql_connect() ����
<?php
// Server in the this format: <computer>\<instance name> or
// <server>,<port> when using a non default port number
$server = 'KALLESPC\SQLEXPRESS';
// Connect to MSSQL
$link = mssql_connect($server, 'sa', 'phpfi');
if (!$link) {
die('Something went wrong while connecting to MSSQL');
}
?>