From: Michael D. <mik...@us...> - 2004-09-01 03:28:39
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14322/Cfg Modified Files: Environment.cs Log Message: Removed ConnectionPool from ConnectionProvider and settings for PreparedStatementCache. Index: Environment.cs =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/Cfg/Environment.cs,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Environment.cs 31 Aug 2004 13:14:24 -0000 1.17 --- Environment.cs 1 Sep 2004 03:28:28 -0000 1.18 *************** *** 52,59 **** --- 52,65 ---- // equivalents - we can probably remove these and remove the SessionFactoryImpl code that // uses them. + [Obsolete("Removing ConnectionPool from NH")] public const string PoolSize = "hibernate.connection.pool_size"; public const string StatementBatchSize = "hibernate.jdbc.batch_size"; public const string StatementFetchSize = "hibernate.jdbc.fetch_size"; public const string UseScrollableResultSet = "hibernate.jdbc.use_scrollable_resultset"; + + // going to remove this - the DataProvider should implement their own IDbCommand + // caching, not NHibernate + [Obsolete("Removing StatementCache from NH")] + public const string StatementCacheSize = "hibernate.statement_cache.size"; static Environment() |