From: helge Date: Tue, 12 Apr 2005 17:51:04 +0000 (+0000) Subject: bumbed max connection count X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=956aa33b5324fd87b8b535cb8a23ae945fb56b68;p=sope bumbed max connection count git-svn-id: http://svn.opengroupware.org/SOPE/trunk@733 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-gdl1/SQLite3/ChangeLog b/sope-gdl1/SQLite3/ChangeLog index 8e3310f0..1d00e394 100644 --- a/sope-gdl1/SQLite3/ChangeLog +++ b/sope-gdl1/SQLite3/ChangeLog @@ -1,3 +1,7 @@ +2005-04-12 Helge Hess + + * SQLiteChannel.m: bumped max connection count from 15 to 150 (v4.5.16) + 2005-04-11 Helge Hess * SQLiteChannel.h, SQLiteAdaptor.m: removed unused ivars (v4.5.15) diff --git a/sope-gdl1/SQLite3/SQLiteChannel.m b/sope-gdl1/SQLite3/SQLiteChannel.m index f380f172..179dc373 100644 --- a/sope-gdl1/SQLite3/SQLiteChannel.m +++ b/sope-gdl1/SQLite3/SQLiteChannel.m @@ -109,7 +109,7 @@ static int openConnectionCount = 0; [[NSUserDefaults standardUserDefaults] integerForKey:@"SQLiteMaxOpenConnectionCount"]; if (MaxOpenConnectionCount == 0) - MaxOpenConnectionCount = 15; + MaxOpenConnectionCount = 150; return MaxOpenConnectionCount; } diff --git a/sope-gdl1/SQLite3/Version b/sope-gdl1/SQLite3/Version index cb19d00e..a80c05fb 100644 --- a/sope-gdl1/SQLite3/Version +++ b/sope-gdl1/SQLite3/Version @@ -1,3 +1,3 @@ # Version file -SUBMINOR_VERSION:=15 +SUBMINOR_VERSION:=16