From: Michael D. <mik...@us...> - 2004-06-18 14:14:44
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9916/NHibernate/Impl Modified Files: SessionFactoryImpl.cs Log Message: Minor mods because of changes in ConnectionProvider. Index: SessionFactoryImpl.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Impl/SessionFactoryImpl.cs,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** SessionFactoryImpl.cs 28 May 2004 11:49:04 -0000 1.19 --- SessionFactoryImpl.cs 18 Jun 2004 14:14:29 -0000 1.20 *************** *** 654,667 **** } ! // TODO: H2.0.3 ! // if (statementCache!=null) statementCache.CloseAll(); ! // try ! // { ! // connections.close(); ! // } ! // finally ! // { ! // SessionFactoryObjectFactory.removeInstance(uuid, name, properties); ! // } } --- 654,668 ---- } ! //TODO: H2.0.3 ! //if (statementCache!=null) statementCache.CloseAll(); ! try ! { ! connectionProvider.Close(); ! } ! finally ! { ! //TODO: H2.0.3 ! //SessionFactoryObjectFactory.removeInstance(uuid, name, properties); ! } } |