fmk Wed Jul 9 18:36:28 2003 EDT Modified files: (Branch: PHP_4_3) /php-src php.ini-dist php.ini-recommended Log: Adding missing MSSQL Server ini settings Index: php-src/php.ini-dist diff -u php-src/php.ini-dist:1.171.2.15 php-src/php.ini-dist:1.171.2.16 --- php-src/php.ini-dist:1.171.2.15 Wed Jun 18 11:19:28 2003 +++ php-src/php.ini-dist Wed Jul 9 18:36:28 2003 @@ -931,6 +931,12 @@ ; Compatability mode with old versions of PHP 3.0. mssql.compatability_mode = Off +; connec timeout +;mssql.connect_timeout = 5 + +; query timeout +;mssql.timeout = 60 + ; Valid range 0 - 2147483647. Default = 4096. ;mssql.textlimit = 4096 @@ -939,6 +945,11 @@ ; Limits the number of records in each batch. 0 = all records in one batch. ;mssql.batchsize = 0 + +; Specify how datetime and datetim4 columns are returned +; On => Returns data converted to SQL server settings +; Off => Returns values as YYYY-MM-DD hh:mm:ss +;mssql.datetimeconvert = On ; Use NT authentication when connecting to the server mssql.secure_connection = Off Index: php-src/php.ini-recommended diff -u php-src/php.ini-recommended:1.119.2.13 php-src/php.ini-recommended:1.119.2.14 --- php-src/php.ini-recommended:1.119.2.13 Wed Jun 18 11:19:28 2003 +++ php-src/php.ini-recommended Wed Jul 9 18:36:28 2003 @@ -929,6 +929,12 @@ ; Compatability mode with old versions of PHP 3.0. mssql.compatability_mode = Off +; Connec timeout +;mssql.connect_timeout = 5 + +; Query timeout +;mssql.timeout = 60 + ; Valid range 0 - 2147483647. Default = 4096. ;mssql.textlimit = 4096 @@ -937,6 +943,11 @@ ; Limits the number of records in each batch. 0 = all records in one batch. ;mssql.batchsize = 0 + +; Specify how datetime and datetim4 columns are returned +; On => Returns data converted to SQL server settings +; Off => Returns values as YYYY-MM-DD hh:mm:ss +;mssql.datetimeconvert = On ; Use NT authentication when connecting to the server mssql.secure_connection = Off
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php