下载freetds http://www.freetds.org/
加上PHP对MSSQL的支持:
./configure --with-mssql=/usr/local/freetds
如果出现:
configure: error: Directory /usr/local/freetds is not a FreeTDS installation directory
就是php找不到freetds的安装路径
其实是
PHP检测其安装目录的时候有些问题,检查依据是两个已经不用的文件,创建两个空文件就OK
touch /usr/local/freetds/include/tds.h
touch /usr/local/freetds/lib/libtds.a
jerry520 于 2008-09-18 16:23:47发表:
:0)1 都知道了!