1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00
git-svn-id: file:///svn/phpbb/trunk@7778 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2007-06-18 16:21:51 +00:00
parent c57f28e273
commit f81bb91eca
3 changed files with 4 additions and 2 deletions

View File

@@ -43,8 +43,7 @@ class dbal_mssql_odbc extends dbal
$this->server = $sqlserver . (($port) ? ':' . $port : '');
$this->dbname = $database;
//
// @ini_set('odbc.defaultlrl', '32M');
@ini_set('odbc.defaultlrl', 65536);
$this->db_connect_id = ($this->persistency) ? @odbc_pconnect($this->server, $this->user, $sqlpassword) : @odbc_connect($this->server, $this->user, $sqlpassword);