標籤:style blog http color io 使用 ar strong 檔案
一、安裝freetds 1、安裝編譯工具及驅動程式
yum install make apr* autoconf automake gcc gcc-c++ wget
2、安裝unixODBC驅動程式
yum -y install unixODBC unixODBC-devel
3、安裝freetds
cd /usr/local/src
wget ftp://ftp.freetds.org/pub/freetds/stable/freetds-stable.tgz #下載,有時用wget命令下載不了
gunzip freetds-stable.tgz #解壓
tar -xvf freetds-stable.tar
cd freetds-0.91
./configure --prefix=/usr/local/freetds --with-tdsver=8.0 --with-unixodbc=/usr --enable-msdblib #配置
make #編譯
make install #安裝
4、配置freetds
cp /usr/local/freetds/etc/freetds.conf /usr/local/freetds/etc/freetds.confbak #備份原有檔案
vi /usr/local/freetds/etc/freetds.conf #在最後位置修改編輯以下內容
tds version = 8.0 #8.0代表資料庫版本為SQL Server 2000,這裡我改成11.0有問題,所有不要改,使用預設的,我用的7.0沒有問題
二、測試freetds
/usr/local/freetds/bin/tsql -S 192.168.0.242 -U hft_test #測試,提示輸入資料庫密碼
三、安裝mssql擴充 進入安裝包中的mssql --> phpize --> ./configure --with-php-config=/usr/local/php5/bin/php-config --with-mssql=/usr/local/freetds
四、laravel架構需要安裝pdo_dblib.so
進入安裝包中的dblib --> phpize --> ./configure --with-php-config=/usr/local/php-5.4.12/bin/php-config --with-pdo-dblib=/usr/local/freetds 五、leravel架構配置
Linux 串連SQL Server資料庫 並配置laravel進行串連