Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2006-02-11Fixes for the failing testcases in System.Data .. Backporting r56531,r56336 ..Senganal T
svn path=/branches/mono-1-1-13/mcs/; revision=56790
2006-02-112006-01-16 Boris Kirzner <borisk@mainsoft.com>Senganal T
* Test/System.Data/DataColumnCollectionTest2.cs: added test case for index update on column removal 2006-01-18 Boris Kirzner <borisk@mainsoft.com> * Mono.Data.SqlExpressions/ColumnReference.cs: added column and relation lazy evaluation and caching. 2006-01-11 Boris Kirzner <borisk@mainsoft.com> * System.Data.Common/Index.cs: removed redundant call to RebuildIndex() in constructor. Backporting Boris Kirzner's fixes to 1_1_13 (r55374,55636,55710) svn path=/branches/mono-1-1-13/mcs/; revision=56788
2006-01-102006-01-10 Senganal T <tsenganal@novell.com>Senganal T
* Mono.Data.SqlExpressions/Aggregation.cs * Mono.Data.SqlExpressions/Expression.cs * System.Data/RelatedDataView.cs * System.Data/DataColumn.cs - Resolbes a method name clash in IExpression svn path=/branches/mono-1-1-13/mcs/; revision=55293
2006-01-062006-01-06 Senganal T <tsenganal@novell.com>Senganal T
* Aggregation.cs - Correction in previous check-in svn path=/trunk/mcs/; revision=55147
2006-01-062006-01-06 Senganal T <tsenganal@novell.com>Senganal T
* Test/System.Data/DataColumnTest.cs * Test/System.Data/DataColumnCollectionTest.cs - Added couple of tests for Expression Columns. * Mono.Data.SqlExpressions/Aggregation.cs - Modified the cache to listen for RowChangedEvents. * Mono.Data.SqlExpressions/Expression.cs * Mono.Data.SqlExpressions/IExpression.cs - Added a Reset Method to cleanup when a Datacolumn is removed from a table. * Mono.Data.SqlExpressions/Parser.jay - Modified to check : 1.Aggregate Functions : Only for columns returning multiple values (child/local) 2.Other Functions : Only for columns that return single value (parent/local) * System.Data/DataColumn.cs * System.Data/DataColumnCollection.cs - Reset the Parameters of DataColumn to Default Values when column is removed from the Table's Collection svn path=/trunk/mcs/; revision=55141
2005-12-202005-12-20 Senganal T <tsenganal@novell.com>Senganal T
* Mono.Data.SqlExpressions/Aggregation.cs : Modified the Eval and CalculateStatisticalFunction to add boundary checks. Fixes #77025. * Test/System.Data/DataColumnTest.cs : added testcase for #77025 svn path=/trunk/mcs/; revision=54652
2005-11-30use Convert.ToInt32() instead of cast to throw OverflowExceptionKonstantin Triger
svn path=/trunk/mcs/; revision=53671
2005-10-27Fix the enumerator initialization problemKonstantin Triger
svn path=/trunk/mcs/; revision=52269
2005-10-212005-10-21 Senganal T <tsenganal@novell.com>Senganal T
* Test/System.Data/DataTableTest2.cs : addded test for #76213 * Mono.Data.SqlExpressions/Numeric.cs : - Modified the Max and Min functions to convert strings(numeric) to double. Fixes bug #76213. svn path=/trunk/mcs/; revision=52023
2005-09-22Implemented Equals() and GetHashCode() for IExpression classes.Boris Kirzner
svn path=/trunk/mcs/; revision=50464
2005-08-02In Test/System.Data:Sureshkumar T
2005-08-02 Sureshkumar T <tsureshkumar@novell.com> * DataTableTest.cs: Select (): added a case for apos escaping. In Mono.Data.SqlExpressions: 2005-08-02 Sureshkumar T <tsureshkumar@novell.com> * Tokenizer.cs: ReadString (): added an overload where the terminator can be escaped by repeating twice. svn path=/trunk/mcs/; revision=47912
2005-06-292005-06-29 Sureshkumar T <tsureshkumar@novell.com>Sureshkumar T
* ArithmeticExpressions.cs: Eval :if any one of the argument is null for an operator, the result is also NULL. svn path=/trunk/mcs/; revision=46715
2005-06-27remove .cvsignore from everywhere, as it is useless on svnBen Maurer
svn path=/trunk/mcs/; revision=46564
2005-05-16merging the Mainsoft branch to the trunkKonstantin Triger
svn path=/trunk/mcs/; revision=44547
2005-05-02Updating ChangeLog with the redesign changesKonstantin Triger
svn path=/branches/Mainsoft.System.Data/mcs/; revision=43889
2005-04-26Drop of Mainsoft.System.DataBoris Kirzner
svn path=/branches/Mainsoft.System.Data/mcs/; revision=43603
2005-04-26missed the case when the expr. don't ends with whitespaceGonzalo Paniagua Javier
svn path=/trunk/mcs/; revision=43576
2005-04-262005-04-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* Tokenizer.cs: make it not rely in exceptions being thrown to know that the array is entirely processed. svn path=/trunk/mcs/; revision=43575
2005-02-102005-02-10 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Comparison.cs : allow comparison between guid and string. * ColumnReference.cs : return guid value too. Fixed bug #72426. svn path=/trunk/mcs/; revision=40417
2005-01-282005-01-28 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Comparison.cs : Eval() could be direct invocation to EvalBoolean(). svn path=/trunk/mcs/; revision=39682
2005-01-262005-01-26 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Tokenizer.cs : just throw SyntaxErrorException instead of Exception. svn path=/trunk/mcs/; revision=39536
2005-01-252005-01-25 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Expression.cs, ColumnReference.cs, BooleanExpression.cs, Aggregation.cs, Literal.cs : added EvalBoolean() to avoid extraneous boxing in RowFilter. * DataTable.cs : use new IExpression.EvalBoolean() to avoid extraneous boxing. svn path=/trunk/mcs/; revision=39490
2005-01-202005-01-20 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Numeric.cs : Fixed ToSameType(). It should let conversion result to reference values. svn path=/trunk/mcs/; revision=39239
2005-01-202005-01-20 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* Parser.jay : let's use debug flag when MONO_DEBUG_SQLEXPRESSIONS environment variable is set. Fixed substring() function. C# cast does not allow implicit conversion from object. svn path=/trunk/mcs/; revision=39230
2004-11-25Add yacc_verbose_flag supportMiguel de Icaza
svn path=/trunk/mcs/; revision=36511
2004-07-122004-07-12 Umadevi S <sumadevi@novell.com>Umadevi S
* Tokenizer.cs - read an Int64 from the text instead of Int32. Resolves bug 61203 svn path=/trunk/mcs/; revision=31031
2004-06-17* Comparison.cs - use 'as' to avoid NullReferenceExeption in casting.Boris Kirzner
svn path=/trunk/mcs/; revision=29751
2004-06-16Add license and copyright to all source files in System.DataSachin Kumar
svn path=/trunk/mcs/; revision=29688
2004-05-132004-05-13 Umadevi S <sumadevi@novell.com>Umadevi S
* Literal.cs - made class internal svn path=/trunk/mcs/; revision=27217
2004-05-122004-05-12 Umadevi S <sumadevi@novell.com>Umadevi S
* Expression.cs, Functions.cs, In.cs, Like.cs, Parser.jay, StringFunctions.cs - made class/enum/interfaces internal svn path=/trunk/mcs/; revision=27155
2004-05-122004-05-12 Umadevi S <sumadevi@novell.com>Umadevi S
* BooleanExpression.cs,ColumnReference.cs, Comparison.cs - made class/enum internal svn path=/trunk/mcs/; revision=27154
2004-05-122004-05-12 Umadevi S <sumadevi@novell.com>Umadevi S
* ArithmeticExpression.cs - made class internal svn path=/trunk/mcs/; revision=27153
2004-05-122004-05-12 Umadevi S <sumadevi@novell.com>Umadevi S
* Aggregation.cs - made Class/enum internal svn path=/trunk/mcs/; revision=27152
2004-05-052004-05-05 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* ArithmeticExpressions.cs: avoid null exception on add operation. svn path=/trunk/mcs/; revision=26725
2004-04-292004-04-29 Juraj Skripsky <juraj@hotfeet.ch>Juraj Skripsky
* Parser.jay: Fix rule for negative expressions. Add precedence rules for '<' and '>'. svn path=/trunk/mcs/; revision=26327
2004-04-28* ColumnReference.cs : using DataRow _inExpressionEvaluation before ↵Boris Kirzner
accessing row value to get an access to deleted rows also. svn path=/trunk/mcs/; revision=26119
2004-04-222004-04-22 Juraj Skripsky <juraj@hotfeet.ch>Juraj Skripsky
* Parser.jay: Allow computed expressions on left-hand side of "like" operator. Correct ordering for "is null" rule ("NOT IS NULL" => "IS NOT NULL"). svn path=/trunk/mcs/; revision=25826
2004-04-202004-04-20 Juraj Skripsky <juraj@hotfeet.ch>Juraj Skripsky
* Tokenizer.cs (ReadNumber): Correctly consume decimal point when reading numbers. Fixes bug #57251. svn path=/trunk/mcs/; revision=25726
2004-03-312004-03-31 Juraj Skripsky <juraj@hotfeet.ch>Juraj Skripsky
* Parser.jay, ColumnReference.cs, Comparison.cs, Functions.cs, Aggregation.cs : fix bugs exposed by DataColumnTest.cs. svn path=/trunk/mcs/; revision=24867
2004-03-292004-03-29 Juraj Skripsky <juraj@hotfeet.ch>Juraj Skripsky
* System.Data.dll.sources : added classes in Mono.Data.SqlExpressions * Makefile : add jay-target for Mono.Data.SqlExpressions/Parser.cs * ExpressionElements.cs : remove * DataColumn.cs, DataRelationCollection.cs, DataTable.cs : Integration of new Mono.Data.SqlExpressions classes used in DataTable.{Select, Compute}. Fixes bug #55503 and lots of failures in DataTableTest.cs. * DataTableTest.cs : add test case for bug #55503, comment out meaningless test cases. * Initial implementation of Mono.Data.SqlExpressions. svn path=/trunk/mcs/; revision=24700