From: Michael D. <mik...@us...> - 2004-09-14 17:50:33
|
Update of /cvsroot/nhibernate/nhibernate/src/NHibernate In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11256 Modified Files: NHibernate-1.1.csproj Log Message: Major refactoring with NDataReader and Batcher. NHibernate now uses an IDataReader returned from the Driver for as long as possible before converting to a NDataReader. This has nice perf gains on the simple performance test in the Test Fixtures. Index: NHibernate-1.1.csproj =================================================================== RCS file: /cvsroot/nhibernate/nhibernate/src/NHibernate/NHibernate-1.1.csproj,v retrieving revision 1.43 retrieving revision 1.44 diff -C2 -d -r1.43 -r1.44 *** NHibernate-1.1.csproj 31 Aug 2004 13:14:24 -0000 1.43 --- NHibernate-1.1.csproj 14 Sep 2004 17:49:53 -0000 1.44 *************** *** 541,544 **** --- 541,549 ---- /> <File + RelPath = "Driver\NHybridDataReader.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Driver\OdbcDriver.cs" SubType = "Code" *************** *** 609,617 **** /> <File - RelPath = "Engine\IPreparer.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "Engine\ISessionFactoryImplementor.cs" SubType = "Code" --- 614,617 ---- *************** *** 969,977 **** /> <File - RelPath = "Impl\PreparerImpl.cs" - SubType = "Code" - BuildAction = "Compile" - /> - <File RelPath = "Impl\QueryImpl.cs" SubType = "Code" --- 969,972 ---- |