[pgsqlclient-checkins] pgsqlclient/PostgreSql.Data.PGSqlClient/source PGConnectionPool.cs,1.1.1.1,1.
Status: Inactive
Brought to you by:
carlosga_fb
From: <car...@us...> - 2003-07-20 09:59:00
|
Update of /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient/source In directory sc8-pr-cvs1:/tmp/cvs-serv30233 Modified Files: PGConnectionPool.cs Log Message: Minor change Index: PGConnectionPool.cs =================================================================== RCS file: /cvsroot/pgsqlclient/pgsqlclient/PostgreSql.Data.PGSqlClient/source/PGConnectionPool.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** PGConnectionPool.cs 12 Jul 2003 08:11:21 -0000 1.1.1.1 --- PGConnectionPool.cs 20 Jul 2003 09:58:57 -0000 1.2 *************** *** 21,24 **** --- 21,25 ---- using System.Collections; using System.Threading; + using PostgreSql.Data.NPGClient; namespace PostgreSql.Data.PGSqlClient *************** *** 173,177 **** return connection; } ! catch (Exception ex) { throw ex; --- 174,178 ---- return connection; } ! catch (PGClientException ex) { throw ex; |