npgsql - Npgsql2: Fixed a bug where Npgsql was throwing exceptions when

From: fxjr(at)pgfoundry(dot)org (User Fxjr)
To: pgsql-committers(at)postgresql(dot)org
Subject: npgsql - Npgsql2: Fixed a bug where Npgsql was throwing exceptions when
Date: 2008-09-18 05:26:41
Message-ID: 20080918052641.13F9A17AE6AE@pgfoundry.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------

Fixed a bug where Npgsql was throwing exceptions when releasing connection to pool and there were portal names which were associated with invalid prepared queries. Npgsql tried to deallocate them and threw exceptions. Now this is property surrounded by a try/catch block.

Modified Files:
--------------
Npgsql2/testsuite/noninteractive/NUnit20:
CommandTests.cs (r1.17 -> r1.18)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/testsuite/noninteractive/NUnit20/CommandTests.cs.diff?r1=1.17&r2=1.18)
Npgsql2/src/Npgsql:
NpgsqlConnector.cs (r1.22 -> r1.23)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/npgsql/Npgsql2/src/Npgsql/NpgsqlConnector.cs.diff?r1=1.22&r2=1.23)

Browse pgsql-committers by date

  From Date Subject
Next Message Dave Page 2008-09-18 09:39:39 stackbuilder - wizard: Additional search locations for i18n files - as
Previous Message User Fxjr 2008-09-18 04:58:54 npgsql - Npgsql2: Fixed tabs to 4 spaces Added test to check a problem