How to connect php source code to mssql database

藏色散人
Release: 2023-02-26 17:10:01
Original
3401 people have browsed it

How to connect php source code to mssql database

How to connect php source code to mssql database?

If the link between PHP and MySQL is implemented, the link between PHP and MSSQL is actually very simple;

Supports local link and remote link of MSSQL, taking the local link as an example:

MS SQLServer 2005 is installed on the machine;

Configure the system before connecting:

1. Check the filephp5.2.5\ntwdblib.dll There is one below by default , cannot be connected and then replaced.

Download the correct version of ntwdblib.dll

(2000.80.194.0), address: http://webzila.com/dll/1/ntwdblib.zip

How to connect php source code to mssql database

2. Configure php

a. Open php.in and remove the comment symbol of extension=php_mssql.dll.

How to connect php source code to mssql database

b. Open php.in and change mssql.secure_connection = Off to on.

How to connect php source code to mssql database

c. Copy php_mssql.dll to the directory specified by extension_dir

in php.in or the system system32 directory. (php_mssql.dll is included in the compressed installation package of php).

How to connect php source code to mssql database

After completing the above steps, you need to restart apache.

Note: In actual use, it was found that if you manually install php to iis through a php compressed file, you must restart the machine and not just iis.

3. Configure sqlserver

a. Run SQL Server Configuration Manager: SQL Server

Configuration Manager, open the protocolProtocols

b. Allow named pipes "named pipes" and "tcp/ip"

c. Right-click "tcp/ip" and open the Properties tab "IP addresses"

d. In TCP Dynamic port "TCP

Dynamic Ports" fill in 1433

e. Restart SQL Server

4. Use the following method to connect to MS SQL Server 2005:

The code is as follows:

How to connect php source code to mssql database

You can see that these functions correspond to MySQL functions and are very convenient to use!

5.FAQ Frequently Asked Questions:

1 Error:

Fatal error: Call to undefined function mssql_connect()

Solution :

Use MSSQL_ series functions

To use these two, you need to set them in php.ini:

(1) To allow DCOM, you need to change php.ini Remove the semicolon ";" before

;com.allow_dcom=TRUE.

(2) To use MSSQL extension, you need to remove the semicolon ";" before

;extension=php_mssql.dll in php.ini. (Key)

(3) Confirm that extension_dir is the correct path. Take this machine as an example: extension_dir = "c:\AppServ\php5\ext".

(4) If the machine still reports an error saying that c:\AppServ\php5\ext\php_mssql.dll cannot be found but this file obviously exists.

Solution: Copy php_mssql.dll and ntwdblib.dll to the system directory \system32 and restart the test. .

(Note: The above two dll files are not in the same directory, mine is c:\AppServ\php5\ext\php_mssql.dll; c:\AppServ\php5\ntwdblib.dll)

Also remember to restart the server after setting it up.

6. Other questions:

If php apache Sql Server2000 is on the same machine, there will be basically no problem accessing it.

If Sql Server2000 and php machines are separated, you need to confirm that the machine name of the machine where sqlserver is located can be pinged. If it cannot be passed, modify the \system32\drivers\etc of the machine where php is located. hosts file, add a line

the machine ip of the machine where sqlserver is located and the machine name of the machine where sqlserver is located.

If you still cannot access it, you need to confirm whether the machine where php is located has a secret conversion to mdac. How about simply installing the sqlserver client.

For more PHP related knowledge, please visit

PHP Chinese website

!

The above is the detailed content of How to connect php source code to mssql database. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!