Heim > Fragen und Antworten > Hauptteil
Wie stelle ich mithilfe der PHP-Toolbox eine Verbindung zu SQL Server 2012 her?
phpcn_u97562017-07-22 07:20:13
我就是按装这个两个网址安装的,你要结合使用。
http://blog.csdn.net/a250758092/article/details/70568803
http://jingyan.baidu.com/album/597a064340f909312a524364.html?picindex=3
我用的是sql server 2014,和2012连法一样。
先要知道你用的那个版本的PHP。 根据PHP下载相应的 mssql的DLL文件。
从这里下载 https://www.microsoft.com/en-us/download/details.aspx?id=36434
Version support for PHP is as follows
SQLSRV40.EXE supports PHP 7.0+ on Windows and Linux
SQLSRV32.EXE supports PHP 5.6, 5.5, and 5.4 on Windows
SQLSRV31.EXE supports PHP 5.5 and 5.4 on Windows
SQLSRV30.EXE supports PHP 5.4 on Windows
这是PHP版相对应的mssql的dll文件。 我是PHP5.4.x的,我下载的是SQLSRV30.EXE。
然后根据网址上的教程,安装。 解压后也会有关相SQLSRV_Help.chm 使用教程,是全英文的。如果你英语很好,我就不说了。如果不好,可以把chm分解成html,然后用翻译工具译成中文,基本可以看懂。
我也是开始学。