博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PHP5.4 连接 SQL SERVER 2008
阅读量:5163 次
发布时间:2019-06-13

本文共 1168 字,大约阅读时间需要 3 分钟。

PHP链接sqlserver需要先安装驱动,不是先把dll放到ext下面,一重启服务器就完事了。

本地环境:

XAMPP 1.8.2

PHP 5.4.31

SQL SERVER 2008 R2

使用的DLL

php_sqlsrv_54_ts.dll

php_pdo_sqlsrv_54_ts.dll

当前报错:

Array    (        [0] => Array            (                [0] => IMSSP                [SQLSTATE] => IMSSP                [1] => -49                [code] => -49                [2] => This extension requires the Microsoft SQL Server 2012 Native Client. Access the following URL to download the Microsoft SQL Server 2012 Native Client ODBC driver for x86: http://go.microsoft.com/fwlink/?LinkId=163712                [message] => This extension requires the Microsoft SQL Server 2012 Native Client. Access the following URL to download the Microsoft SQL Server 2012 Native Client ODBC driver for x86: http://go.microsoft.com/fwlink/?LinkId=163712            )    )

也就是说机器上需要安装驱动。

根据这个 的介绍 报错信息有误,应该下载x64。

到这个  

点开Install Instructions

下载 Microsoft® SQL Server® 2012 Native Client   

 

下载这个4M多的sqlncli.msi。

官方论坛地址:https://social.technet.microsoft.com/Forums/sqlserver/en-US/home?forum=sqldriverforphp&sort=relevancedesc&brandIgnore=True&searchTerm=php5.4+sql+server+2008

转载于:https://www.cnblogs.com/mafeifan/p/4051213.html

你可能感兴趣的文章
Python操作SQLite数据库的方法详解
查看>>
如何透彻的掌握一门机器学习算法
查看>>
用数据分析进行品类管理
查看>>
实验二:编写输出"Hello World!"
查看>>
菜单和工具条(二)
查看>>
hadoop17---RPC和Socket的区别
查看>>
poj 1466
查看>>
洛谷P1238 走迷宫题解
查看>>
js正则表达
查看>>
UNITY 多个子MESH与贴图的对应关系
查看>>
[BZOJ 3531] [Sdoi2014] 旅行 【离线+LCT】
查看>>
find命令
查看>>
Learning how to learn
查看>>
node.js模块本地代理模块(将自己本机/局域网)服务 代理到外网可以访问
查看>>
苹果内购买
查看>>
使用JMeter代理录制app测试脚本
查看>>
MVC 未启用角色管理功能
查看>>
Linq to Object实现分页获取数据
查看>>
mac常用系统命令
查看>>
第42章:MongoDB-集群--Sharding(分片)--单机的搭建
查看>>