From: Michael D. <mik...@us...> - 2004-06-18 14:00:41
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Tool/hbm2ddl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32472/NHibernate/Tool/hbm2ddl Modified Files: SchemaExport.cs Log Message: Synch with H2.0.3 - added line to tell the ConnectionProvider to close all of the connections it has in the pool. Index: SchemaExport.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Tool/hbm2ddl/SchemaExport.cs,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** SchemaExport.cs 3 May 2004 14:33:19 -0000 1.8 --- SchemaExport.cs 18 Jun 2004 14:00:20 -0000 1.9 *************** *** 193,196 **** --- 193,197 ---- { connectionProvider.CloseConnection(connection); + connectionProvider.Close(); } } |