Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8238/Connection
Modified Files:
ConnectionProvider.cs
Log Message:
Changed method name in PropertiesHelper from GetInt() to GetInt32()
Index: ConnectionProvider.cs
===================================================================
RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Connection/ConnectionProvider.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** ConnectionProvider.cs 18 Jun 2004 13:59:05 -0000 1.3
--- ConnectionProvider.cs 12 Jul 2004 01:31:09 -0000 1.4
***************
*** 44,48 ****
// if the .net DataProvider did not provide their own connection pooling. I don't know of
// any instances of this yet.
! poolSize = PropertiesHelper.GetInt(Cfg.Environment.PoolSize, Cfg.Environment.Properties, 0);
log.Info("NHibernate connection pool size: " + poolSize);
--- 44,48 ----
// if the .net DataProvider did not provide their own connection pooling. I don't know of
// any instances of this yet.
! poolSize = PropertiesHelper.GetInt32(Cfg.Environment.PoolSize, Cfg.Environment.Properties, 0);
log.Info("NHibernate connection pool size: " + poolSize);
|