您好,登錄后才能下訂單哦!
這篇文章給大家介紹Linux 下 PHP 5.2.x 連接SQL Server數(shù)據(jù)庫FreeTDS的配置是什么,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
CentOS 5.4 Linux 下的
PHP(FastCGI) 需要連接相關(guān)部門的SQL Server 2000數(shù)據(jù)庫,配置了擴展FreeTDS擴展。
1、編譯安裝FreeTDS
mkdir -p /data0/software/
cd /data0/software/
wget
ftp://ftp.ibiblio.org/pub/Linux/ALPHA/freetds/stable/freetds-stable.tgz
tar zxvf freetds-stable.tgz
cd freetds-0.82/
./configure --prefix=/usr/local/webserver/freetds --with-tdsver=8.0 --enable-msdblib
make && make install
cd ../
echo "/usr/local/webserver/freetds/lib/" > /etc/ld.so.conf.d/freetds.conf
ln -s /usr/local/webserver/freetds/lib/libsybdb.so.5.0.0 /usr/local/webserver/freetds/lib/libsybdb.so.4
/sbin/ldconfig
rm -f /usr/local/webserver/freetds/etc/freetds.conf
vi /usr/local/webserver/freetds/etc/freetds.conf
輸入以下內(nèi)容:
引用
[global]
# TDS protocol version
; tds version = 4.2
# Whether to write a TDSDUMP file for diagnostic purposes
# (setting this to /tmp is insecure on a multi-user system)
; dump file = /tmp/freetds.log
; debug flags = 0xffff
# Command and connection timeouts
; timeout = 10
; connect timeout = 10
# If you get out-of-memory errors, it may mean that your client
# is trying to allocate a huge buffer for a TEXT field.
# Try setting 'text size' to a more reasonable limit
text size = 64512
host = mssql.yourdomain.com
port = 1433
tds version = 8.0
client charset = UTF-8
2、編譯安裝PHP自帶MSSQL擴展
進入本地已存在的
php-5.2.XX源碼包目錄:
cd /data0/software/
php-5.2.XX/ext/mssql/
/usr/local/webserver/
php/bin/
phpize
./configure --with-
php-config=/usr/local/webserver/
php/bin/
php-config --with-mssql=/usr/local/webserver/freetds/
make && make install
3、在php.ini配置文件中增加mssql.so
vi /usr/local/webserver/ php/etc/ php.ini
增加一行:
引用
extension = "mssql.so"
4、重啟PHP FastCGI
/usr/local/webserver/ php/sbin/ php-fpm restart
5、測試文件(test_mssql.php):
view plain copy to clipboard print ?
<?php
header("Content-type: text/html; charset=utf-8");
$msdb=mssql_connect("mssql.yourdomain.com:1433","username","password");
if (!$msdb) {
echo "connect sqlserver error";
exit;
}
mssql_select_db("database_name",$msdb);
$result = mssql_query("SELECT top 5 * FROM table", $msdb);
while($row = mssql_fetch_array($result)) {
var_dump($row);
}
mssql_free_result($result);
?>
關(guān)于Linux 下 PHP 5.2.x 連接SQL Server數(shù)據(jù)庫FreeTDS的配置是什么就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。