domainobjects-subversion Mailing List for DomainObjects for .NET (Page 12)
Brought to you by:
rbeauchamp
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
|
Apr
(44) |
May
(21) |
Jun
(41) |
Jul
(23) |
Aug
(14) |
Sep
(9) |
Oct
(4) |
Nov
(20) |
Dec
(25) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(8) |
Feb
(3) |
Mar
(12) |
Apr
(9) |
May
(1) |
Jun
(11) |
Jul
(3) |
Aug
(6) |
Sep
(13) |
Oct
(12) |
Nov
(2) |
Dec
(1) |
2008 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
(3) |
Jun
(1) |
Jul
|
Aug
(6) |
Sep
(4) |
Oct
(24) |
Nov
(4) |
Dec
(8) |
2009 |
Jan
(6) |
Feb
(1) |
Mar
(1) |
Apr
(5) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(16) |
Dec
(11) |
2010 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
|
Aug
|
Sep
(6) |
Oct
(19) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(9) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <rbe...@us...> - 2006-08-24 15:06:34
|
Revision: 205 Author: rbeauchamp Date: 2006-08-24 08:06:24 -0700 (Thu, 24 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=205&view=rev Log Message: ----------- - Added logic to reorder deletes before other operations on a table so that uniqueness constraints can be met. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Transaction/TypeReorderingStrategy.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-24 14:55:33
|
Revision: 204 Author: rbeauchamp Date: 2006-08-24 07:55:09 -0700 (Thu, 24 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=204&view=rev Log Message: ----------- - Fixed bug [ 1537678 ] Exception while utilizing constant with same value in Case. - Implemented [ 1532096 ] Remove unneeded concrete type constraint from where clause. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/IDbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Select/SelectResultsTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/From/Class.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/ClassDescriptor.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/DescriptorRepository.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/DiagnosticsTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-18 15:11:29
|
Revision: 203 Author: rbeauchamp Date: 2006-08-18 08:10:18 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=203&view=rev Log Message: ----------- - Implemented feature [ 1537129 ] Allow a deadlocked database transaction to be retried. Implemented deadlock retry code for Sql Server, Oracle and MySql. - Precondition for parameter column length is only validated if the parameter is an insert or update parameter. Modified Paths: -------------- trunk/DomainObjects2/build.xml trunk/DomainObjects2/resource/app.config trunk/DomainObjects2/src/Core/AssemblyInfo.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/Parameter.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DbSchemaColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/DerivedColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/IColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Select/SelectResultsTable.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/Function/ScalarFunction.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/BetweenCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/ComparisonCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/Where/InCriteria.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Documentation/content/xdocs/index.xml trunk/DomainObjects2/src/DomainObjectGen/assemblyinfo.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/MySql/MySqlDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProvider.cs trunk/DomainObjects2/src/Extensions/Properties/AssemblyInfo.cs trunk/DomainObjects2/src/Manager/AssemblyInfo.cs trunk/DomainObjects2/src/RepositoryGen/assemblyinfo.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/RootObject.cs trunk/DomainObjects2/src/Test/Properties/AssemblyInfo.cs trunk/DomainObjects2/src/TestDataLoader/AssemblyInfo.cs trunk/DomainObjects2/src/Tutorial/AssemblyInfo.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-08-18 13:24:52
|
Revision: 202 Author: dkondratiuk Date: 2006-08-18 06:24:23 -0700 (Fri, 18 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=202&view=rev Log Message: ----------- Added personal configuration Added a char filter test Modified Paths: -------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/Properties/UnitTestProperties.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-16 10:12:09
|
Revision: 201 Author: rbeauchamp Date: 2006-08-16 03:11:49 -0700 (Wed, 16 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=201&view=rev Log Message: ----------- Fixed issue with inheritance via delegation: OnIdentityChange was not being called. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-15 14:44:58
|
Revision: 200 Author: rbeauchamp Date: 2006-08-15 07:44:36 -0700 (Tue, 15 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=200&view=rev Log Message: ----------- - Fixed issue with caching collections. - EditableObject and ImmutableObject are automatically bound to current transaction when created (as in current released version) for backwards compatibility. I will make this configurable so that users can choose to use the 'automatic bind' functionality. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ObjectReferenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectScopeTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-08-11 20:38:52
|
Revision: 199 Author: dkondratiuk Date: 2006-08-11 13:38:31 -0700 (Fri, 11 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=199&view=rev Log Message: ----------- Bug fix using the ReplaceNull with strings (QueryTests.ReplaceNullFunctionWithStringValues) Implementation of the test QueryTests.LongStringsAreAllowedInWhereClauses using Oracle Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/ReplaceNull.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-09 03:08:16
|
Revision: 198 Author: rbeauchamp Date: 2006-08-08 20:08:05 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=198&view=rev Log Message: ----------- Fixed bug [ 1537125 ] Exception while executing a sum of a case query. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/ScalarField.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-09 02:34:28
|
Revision: 197 Author: rbeauchamp Date: 2006-08-08 19:34:14 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=197&view=rev Log Message: ----------- Implemented feature request [ 1532030 ] Convert .NET type to DbType in case statement. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Expression/Constant.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/Case.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/Tool/Generator/OleDbTypeToDbType.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-09 01:31:20
|
Revision: 196 Author: rbeauchamp Date: 2006-08-08 18:31:16 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=196&view=rev Log Message: ----------- Implemented feature request [ 1532015 ] Improve error message for OptimisticConcurrencyException. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/OptimisticConcurrencyException.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-09 01:18:15
|
Revision: 195 Author: rbeauchamp Date: 2006-08-08 18:18:11 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=195&view=rev Log Message: ----------- Fix for bug [ 1530961 ] DomainObjectGen.exe reports incorrect command line switch. Modified Paths: -------------- trunk/DomainObjects2/src/DomainObjectGen/DomainObjects/Tools/DomainObjectGen/EntryPoint.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-09 00:56:11
|
Revision: 194 Author: rbeauchamp Date: 2006-08-08 17:56:01 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=194&view=rev Log Message: ----------- Fixed bug [ 1532022 ] Exception while aborting transaction. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionNotSupportedService.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-08-08 16:16:13
|
Revision: 193 Author: rbeauchamp Date: 2006-08-08 09:15:14 -0700 (Tue, 08 Aug 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=193&view=rev Log Message: ----------- Fix for bug [ 1532045 ] Old version of object retrieved by transaction. Fix for bug [ 1531977 ] Database or object transaction cannot be retried. Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/Cache/CacheFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Cache/ObjectCache.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/EditableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ICreatable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ImmutableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/ReadOnlyObject.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Test/DomainObjectsTestFixture.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Transaction/SingleThreadedUnitOfWork.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/DescriptorRepository.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/AbstractProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/LazyLoadingObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ListProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyFactory.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ProxyServices.cs trunk/DomainObjects2/src/Core/DomainObjects/Proxy/TransactableObjectProxy.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BindManager.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/BoundObjectSet.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/ObjectTransaction.cs trunk/DomainObjects2/src/Core/DomainObjects/Transaction/States/StateOldDelete.cs trunk/DomainObjects2/src/Core/DomainObjects.Core.dll.csproj trunk/DomainObjects2/src/Documentation/DomainObjects.Documentation.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/BaseType.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/RootObject.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/AdoNetTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CacheTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CallbackTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CollectionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MtoNTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/MutatorAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectBuilderTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectReferenceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ObjectTransactionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PerformanceTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/PrimaryKeyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ProxyTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAttributeTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/NonTransactionalService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionNotSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionRequiredService2.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestType/Service/TransactionSupportedService.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/src/TestDataLoader/DomainObjects/Test/TestDataLoader/Loader.cs trunk/DomainObjects2/src/TestDataLoader/TestDataLoader.exe.csproj Added Paths: ----------- trunk/DomainObjects2/src/Core/DomainObjects/Proxy/ObjectReferenceFacade.cs trunk/DomainObjects2/src/Documentation/content/xdocs/Documentation/ObjectScope.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CompositeKeyTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/ForeignKeyTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-30 08:49:48
|
Revision: 192 Author: rbeauchamp Date: 2006-07-30 01:49:40 -0700 (Sun, 30 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=192&view=rev Log Message: ----------- Fixed the tutorial code. Modified Paths: -------------- trunk/DomainObjects2/src/Tutorial/DomainObjects.Tutorial/TutorialClient.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-28 21:18:55
|
Revision: 190 Author: dkondratiuk Date: 2006-07-27 09:35:34 -0700 (Thu, 27 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=190&view=rev Log Message: ----------- An Assert that validate then string parameter length was removed because a where expression can exceed the string length (QueryTests.LongStringsAreAllowedInWhereClauses). The Repository have been modified because the ISBN field should be an AnsiStringFixedLength field. If a parameter is an AnsiStringFixedLenght the size will not be setted because the SqlCommand ignore the parameter if the value is greater than this size. (I think its a problem of the SqlClient) Modified Paths: -------------- trunk/DomainObjects2/resource/Repository.xml trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/Parameter.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/SqlServer/SqlServerDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-28 19:55:16
|
Revision: 191 Author: dkondratiuk Date: 2006-07-27 09:46:45 -0700 (Thu, 27 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=191&view=rev Log Message: ----------- All the Add.... methods of the Criteria class returns the current criteria instance so its easier to build "inline" criterias (demo at QueryTests.InlineCriteria) Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Criteria.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-18 12:56:07
|
Revision: 189 Author: rbeauchamp Date: 2006-07-18 05:55:58 -0700 (Tue, 18 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=189&view=rev Log Message: ----------- Implementing UpdateByCriteria with output so clients can retrieve the set of instances that were updated. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/PersistenceFacade.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/UpdateByCriteria.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-17 17:22:38
|
Revision: 188 Author: dkondratiuk Date: 2006-07-17 10:22:29 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=188&view=rev Log Message: ----------- The parameter name generator for Oracle was changed so I would be never generate an Alias greater than 30 characters Modified Paths: -------------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-17 15:13:45
|
Revision: 187 Author: rbeauchamp Date: 2006-07-17 08:13:36 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=187&view=rev Log Message: ----------- Updated documentation. Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IReconstructionAware.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-17 15:05:17
|
Revision: 186 Author: rbeauchamp Date: 2006-07-17 08:05:08 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=186&view=rev Log Message: ----------- Updated documentation. Modified Paths: -------------- trunk/DomainObjects2/ReleaseLog.txt trunk/DomainObjects2/src/Documentation/content/xdocs/Welcome/Features.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/UpdateByCriteriaTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-17 14:51:41
|
Revision: 185 Author: rbeauchamp Date: 2006-07-17 07:51:35 -0700 (Mon, 17 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=185&view=rev Log Message: ----------- RepositoryGenConnectionString reads from UnitTestProperties.xml so that unit tests work for multiple developers without having to modify the code each time to get the tests to run. Modified Paths: -------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/InternalDomainObjectsTestFixture.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Properties/UnitTestProperties.xml This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-15 13:18:17
|
Revision: 184 Author: rbeauchamp Date: 2006-07-15 06:18:12 -0700 (Sat, 15 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=184&view=rev Log Message: ----------- Preparing for release 1.0.1 Modified Paths: -------------- trunk/DomainObjects2/ReleaseLog.txt trunk/DomainObjects2/src/Documentation/content/xdocs/index.xml Removed Paths: ------------- trunk/DomainObjects2/src/Common/ trunk/DomainObjects2/src/Metadata/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-14 21:27:43
|
Revision: 183 Author: dkondratiuk Date: 2006-07-14 14:26:54 -0700 (Fri, 14 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=183&view=rev Log Message: ----------- All test are running ok against Oracle. * The DataProviders implements * GetDateFunction * ParseDateDiffFunction * ParseDatePartFunction * IsNullFunctionName dATEdIFF, DatePart, GetDaate and Null are diferent in Oracle so the responsability of how these functions will be in the SQL sentence is a responsability of the provider Its necessary to execute the OracleSetUpScript if someone want to use the DateDiff Function/DateDiff.cs If the Provider property TrustedProvider is false Guids will be string values in the database but the OracleProvider and the RowReader will make this convertion between the Guid property and the VarChar Column Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/ObjectModel/ObjectModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/DateDiff.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/DatePart.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/GetDate.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Command/Function/ReplaceNull.cs trunk/DomainObjects2/src/Core/DomainObjects/Metadata/Tool/Generator/RepositoryGenerator.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/InternalDomainObjectsTestFixture.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Properties/UnitTestProperties.xml trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/FunctionTests.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/QueryTests.cs Added Paths: ----------- trunk/DomainObjects2/testbed/oracle/OracleSetUpScript.sql This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rbe...@us...> - 2006-07-14 15:51:33
|
Revision: 182 Author: rbeauchamp Date: 2006-07-14 08:51:16 -0700 (Fri, 14 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=182&view=rev Log Message: ----------- Fixed bug '[ 1522191 ] OnAfterReconstructor Issue' Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IPersistable.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/IReconstructionAware.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/Domain/PersistableObject.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectInitializer.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectSetBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Test/DomainObjects.Test/Domain/Product.cs trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj Added Paths: ----------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/CallbackTests.cs Removed Paths: ------------- trunk/DomainObjects2/src/Test/DomainObjects.Test/TestFixture/TransactionAwareTests.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <dko...@us...> - 2006-07-14 12:31:50
|
Revision: 181 Author: dkondratiuk Date: 2006-07-14 05:30:55 -0700 (Fri, 14 Jul 2006) ViewCVS: http://svn.sourceforge.net/domainobjects/?rev=181&view=rev Log Message: ----------- TestDataLoader works with Oracle support The following changes were made: * IDataProvider / AbstractDataProvider * New Property SupportSequences added * GetSequenceCommand method added * The responsibility of how a field or a table will be in the sql statement were moved to the provider * New property TrustedProvider. With this property RowReader knows y can uses all the properties of a reader or not * The method GetNextSequence were added in the CommandExecutionUtil * The scope of several methods was changed, so the provider specific classes may override them These are the Oracle differences that were solved : * Sequences * There is no Top keyword (Rownum were used) * Its important the order of the parameters * The Delete clause its differentTestDataLoader and all tests works with Oracle support The following changes were made: * IDataProvider / AbstractDataProvider * New Property SupportSequences added * GetSequenceCommand method added * The responsibility of how a field or a table will be in the sql statement were moved to the provider * New property TrustedProvider. With this property RowReader knows y can uses all the properties of a reader or not * The method GetNextSequence were added in the CommandExecutionUtil * The scope of several methods was changed, so the provider specific classes may override them These are the Oracle differences that were solved : * Sequences * There is no Top keyword (Rownum were used) * Its important the order of the parameters * The Delete clause its different Modified Paths: -------------- trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/CommandExecutionUtil.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SelectByPkCommandBuilder.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelInsertStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSelectStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelSqlStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/DbModelUpdateStatement.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/Column.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Expression/IColumn.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/From/Table.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/Command/SqlStatement/DbModel/Where/WhereClause.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/AbstractDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/DataProvider/IDataProvider.cs trunk/DomainObjects2/src/Core/DomainObjects/DbAccess/RowReader.cs trunk/DomainObjects2/src/Core/DomainObjects/Facade/DatabaseSession.cs trunk/DomainObjects2/src/Core/DomainObjects/ObjectAccess/ObjectValueAccessor.cs trunk/DomainObjects2/src/Core/DomainObjects/PersistenceBroker.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/DataProvider/Oracle/OracleDataProvider.cs trunk/DomainObjects2/src/Extensions/DomainObjects.Extensions.dll.csproj trunk/DomainObjects2/src/Test/DomainObjects.Test.dll.csproj trunk/DomainObjects2/testbed/oracle/CreateDatabase.SQL Added Paths: ----------- trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/ trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelInsertStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/DbModel/OracleDbModelSelectStatement.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleDeleteCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleSequenceCommandBuilder.cs trunk/DomainObjects2/src/Extensions/DomainObjects/DbAccess/Command/Oracle/OracleUpdateCommandBuilder.cs This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |