关于php连接mssql:pdo odbc sql server

2015-01-24信息快讯网
只有一个php_pdo_odbc.dll。
so~最新最好的php连接mssql方法应该是这样:
 
<?php 
$cnx = new PDO("odbc:Driver={SQL Server};Server=127.0.0.1;Database=test;",'sa','asd123'); 
var_dump($cnx); 
$a = $cnx->query("SELECT * FROM [user]"); 
var_dump($a); 
foreach ($a as $b) { 
var_dump($b); 
} 
?> 


关于PHP无法连接MSSQL数据库的问题
今天配置了新服务器,配置是IIS+php,结果运行时发现php连接远程mssql数据库出错,出错代码如下:
Warning: mssql_connect(): Unable to connect to server:
想想以前都是没问题的,怎么回事呢?后来去网上搜索,发现一篇文章,才发现原来服务器是需要安装mssql才能用php连接mssql的,本来新服务器上我是不需要用到mssql的,但是现在没办法了,只能把它装上了,安装了mssql之后就没问题了。
我在想,如果是在linux上面的apache+php会怎样呢,不可能需要安装mssql吧,呵呵,晕了。
下面是找到的一篇文章。
php配置:
在php.ini文件里设置如下,找到
;extension=php_mssql.dll 把前面的分号去掉
找到extension_dir = d:\extension\
你的php.ini里面可能不是d:\extension\
改成在php安装目录下面的extensions目录下面的php_mssql.dll,所在的路径,如果你没有把它移动到其他地方(假设你的php安装路径是d:\php)
就改成extension_dir=d:\php\extensions\
然后重新启动web服务器

这一点很容易做到,但是做完这样的设置后还是连不上,错误的信息如下:
MS SQL Server 数据库连接错误!请检查数据库主机变量设置是否正确!!!
而主机的变量设置我是一遍一遍的检查,那些设置是一点问题都没有的,翻遍网页,找到了下面的这点蛛丝马迹:

php.com资料:
I am trying to connect to SQL Server 2000 from PHP
I bumped to following warning:
Warning: mssql_connect(): Unable to connect to server: SERVER\Portal
....... on line 5
on line 5 there is:
$db_connect = mssql_connect('SERVER\Portal', 'sa', 'my_passwd');
I did the following
1.enabled php_mssql.dll extension in PHP.ini
2.every dll is in proper place(System32 or PHP folder),including ntwdblib.dll
I search lots of profile throught web ,but no one give me proper answer to resolve it.
after a few hour ,I found the problem was caused by
ntwdblib.dll ,which version is 7.00.839 ,when I replaced old ntwdblib.dll with the new
ntwdblib.dll ,which version is 8.00.194 ,all problem are solved.
We had some, read A LOT, of problems with MSSQL under Windows 2003.
We had 2 the same windows, php, php-ini, everything machines but only one could connect.
Unable to connect was the error message.
Finnaly we checked the version of ntwdblib.dll and the one distributed with PHP was 7.00....
and the version of the one on the SQL Server install was 8.00.... so we copied this one in
the php and apache dir and it worked.
问题就这样被找到了,惹祸的是它 ntwdblib.dll
ntwdblib.dll的主要作用是提供sql server连接服务。
我用的php版本是4.3.9,在安装它的服器的 windows/system32/ 下我查到ntwdblib.dll文件的版本是2000.2.8.0 ,这个版本支持的是sql server 7.0, 因为安装PHP时会把dlls下面的所有文件覆盖到系统
目录下,所以当我用它去连接 sql server 2000 的时候当然会是无法连接了。
后来我在一台正常安装sql server 2000 的服务器上查到 ntwdblib.dll的版本是 2000.80.2039.0,我把这个文件拷过去,覆盖掉以前的版本,重启服务器后,一切正常。
补充:如果数据库名的开头是数字时也会提示无法打开,这时要做的很简单,把数据库的名字用中括号 [ ]
括起来就搞定了,如 123bbs 改写成 [123bbs]就没有问题了,另外如果你的数据库名字与sql server中的保留字冲突的话也会出现这种情况,用中括号的方法一样可以解决。
最终,PHP无法正确连接sql server 2000的问题终于解决了,虽然耗费大半天的时间,但收获还是很大的,现在把它贴出来,也让遇到同样问题的兄弟们少走一些弯路。
PHP生成随机用户名和密码的实现代码
PHP人民币金额数字转中文大写的函数代码
PHP和.net中des加解密的实现方法
php和js如何通过json互相传递数据相关问题探讨
php数组的概述及分类与声明代码演示
php并发对MYSQL造成压力的解决方法
php连接mssql数据库的几种方法
PHP中通过HTTP_USER_AGENT判断是否为手机移动终端的函数代码
php中存储用户ID和密码到mysql数据库的方法
php中选择什么接口(mysql、mysqli)访问mysql
php连接mssql的一些相关经验及注意事项
php函数array_merge用法一例(合并同类数组)
有关phpmailer的详细介绍及使用方法
PHP中header和session_start前不能有输出原因分析
PHP/Javascript/CSS/jQuery常用知识大全详细整理第1/2页
php5.3中连接sqlserver2000的两种方法(com与ODBC)
PHP5下$_SERVER变量不再受magic_quotes_gpc保护的弥补方法
php插入中文到sqlserver 2008里出现乱码的解决办法分享
PHP连接SQLServer2005的实现方法(附ntwdblib.dll下载)
PHP连接SQLSERVER 注意事项(附dll文件下载)
php中批量替换文件名的实现代码
PHP mcrypt可逆加密算法分析
PHP中date()日期函数有关参数整理
php URL验证正则表达式
PHP中static关键字原理的学习研究分析
在WAMP环境下搭建ZendDebugger php调试工具的方法
MySQL连接数超过限制的解决方法
php入门学习知识点一 PHP与MYSql连接与查询
php自定义函数call_user_func和call_user_func_array详解
PHP 获取MySQL数据库里所有表的实现代码
php与mysql建立连接并执行SQL语句的代码
PHP和Mysqlweb应用开发核心技术 第1部分 Php基础-3 代码组织和重用2
php array_intersect比array_diff快(附详细的使用说明)
php header Content-Type类型小结
php中关于codeigniter的xmlrpc的类在进行数据交换时的类型问题
php设计模式 Observer(观察者模式)
The specified CGI application misbehaved by not returning a complete set of HTTP headers
php expects parameter 1 to be resource, array given 错误
PHP连接SQLServer2005 的问题解决方法
php $_SERVER["REQUEST_URI"]获取值的通用解决方法
©2014-2024 dbsqp.com