|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-05-12 15:01 UTC] kalowsky@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 06:00:01 2025 UTC |
In trying to tweak my ODBC connection use, I was trying to limit the number of max_links. I could change the number in php.ini, but didn't see the change in phpinfo() output. I changed uodbc.max_links = -1 to uodbc.max_links = 10 Then, looking at the phpinfo() output, I saw the variable was actually called odbc.max_links, so changing the line to: odbc.max_links = 10 did the trick. Your documentation also specifies the parameter as "uodbc". This could be an artifact of me using libiodbc, instead of unixODBC, not sure. The uodbc -> odbc name change effects all the odbc variables (allow_persistent, check_persistent, etc)