当前位置: 技术问答>linux和unix
关于php的配置(急)
来源: 互联网 发布时间:2015-05-31
本文导语: 我在redhat 2004下安装了sybase,如何给php配置sybase | 编译的时候加上下面两个参数 --with-sybase[=DIR] Include Sybase-DB support. DIR is the Sybase home directo...
我在redhat 2004下安装了sybase,如何给php配置sybase
|
编译的时候加上下面两个参数
--with-sybase[=DIR] Include Sybase-DB support. DIR is the Sybase home
directory, defaults to /home/sybase.
--with-sybase-ct[=DIR] Include Sybase-CT support. DIR is the Sybase home
directory. Defaults to /home/sybase.
--with-sybase[=DIR] Include Sybase-DB support. DIR is the Sybase home
directory, defaults to /home/sybase.
--with-sybase-ct[=DIR] Include Sybase-CT support. DIR is the Sybase home
directory. Defaults to /home/sybase.
|
在php.ini中对以下选项做适当配置
sybase.allow_persistent boolean
配置是否允许 Sybase 数据库持续连接 (persistent connections),会影响 sybase_pconnect() 函数。
sybase.max_persistent integer
配置每个处理程序最多保持几个 Sybase 持续连接。
sybase.max_links integer
配置每个处理程序最多开几个 Sybase 连接,包括持续连接
程序里利用
sybase_pconnect()连接sybase数据库
sybase.allow_persistent boolean
配置是否允许 Sybase 数据库持续连接 (persistent connections),会影响 sybase_pconnect() 函数。
sybase.max_persistent integer
配置每个处理程序最多保持几个 Sybase 持续连接。
sybase.max_links integer
配置每个处理程序最多开几个 Sybase 连接,包括持续连接
程序里利用
sybase_pconnect()连接sybase数据库
|
没有用过SYBASE