Recent Posts | - July, 2024-7,(1)
- May, 2024-5,(2)
- May, 2023-5,(1)
- February, 2023-2,(1)
- November, 2022-11,(1)
- July, 2022-7,(2)
- March, 2022-3,(1)
- November, 2021-11,(2)
- August, 2021-8,(2)
- July, 2021-7,(2)
- June, 2021-6,(1)
- May, 2021-5,(1)
- March, 2021-3,(1)
- February, 2021-2,(2)
- January, 2021-1,(7)
- December, 2020-12,(3)
- March, 2020-3,(2)
- February, 2020-2,(1)
- December, 2019-12,(2)
- November, 2019-11,(1)
- October, 2019-10,(1)
- September, 2019-9,(1)
- August, 2019-8,(1)
- May, 2019-5,(1)
- April, 2019-4,(2)
- March, 2019-3,(2)
- December, 2018-12,(1)
- November, 2018-11,(4)
- July, 2018-7,(1)
- May, 2018-5,(3)
- April, 2018-4,(2)
- February, 2018-2,(3)
- January, 2018-1,(3)
- November, 2017-11,(2)
- August, 2017-8,(1)
- June, 2017-6,(3)
- May, 2017-5,(5)
- February, 2017-2,(1)
- December, 2016-12,(1)
- October, 2016-10,(2)
- September, 2016-9,(1)
- August, 2016-8,(1)
- July, 2016-7,(1)
- March, 2016-3,(2)
- February, 2016-2,(3)
- December, 2015-12,(5)
- November, 2015-11,(5)
- September, 2015-9,(1)
- August, 2015-8,(2)
- July, 2015-7,(1)
- March, 2015-3,(2)
- February, 2015-2,(1)
- December, 2014-12,(4)
- July, 2014-7,(2)
- June, 2014-6,(2)
- May, 2014-5,(3)
- April, 2014-4,(3)
- March, 2014-3,(1)
- December, 2013-12,(2)
- November, 2013-11,(1)
- July, 2013-7,(1)
- June, 2013-6,(2)
- May, 2013-5,(1)
- March, 2013-3,(3)
- February, 2013-2,(3)
- January, 2013-1,(1)
- December, 2012-12,(3)
- November, 2012-11,(1)
- October, 2012-10,(1)
- September, 2012-9,(1)
- August, 2012-8,(1)
- July, 2012-7,(6)
- June, 2012-6,(1)
- April, 2012-4,(1)
- March, 2012-3,(3)
- February, 2012-2,(3)
- January, 2012-1,(4)
- December, 2011-12,(3)
- October, 2011-10,(3)
- September, 2011-9,(1)
- August, 2011-8,(10)
- July, 2011-7,(2)
- June, 2011-6,(7)
- March, 2011-3,(2)
- February, 2011-2,(3)
- January, 2011-1,(1)
- September, 2010-9,(1)
- August, 2010-8,(2)
- June, 2010-6,(1)
- May, 2010-5,(1)
- April, 2010-4,(3)
- March, 2010-3,(2)
- February, 2010-2,(3)
- January, 2010-1,(1)
- December, 2009-12,(3)
- November, 2009-11,(3)
- October, 2009-10,(2)
- September, 2009-9,(5)
- August, 2009-8,(3)
- July, 2009-7,(9)
- June, 2009-6,(2)
- May, 2009-5,(2)
- April, 2009-4,(9)
- March, 2009-3,(6)
- February, 2009-2,(4)
- January, 2009-1,(10)
- December, 2008-12,(5)
- November, 2008-11,(5)
- October, 2008-10,(13)
- September, 2008-9,(10)
- August, 2008-8,(7)
- July, 2008-7,(8)
- June, 2008-6,(12)
- May, 2008-5,(14)
- April, 2008-4,(12)
- March, 2008-3,(17)
- February, 2008-2,(10)
- January, 2008-1,(16)
- December, 2007-12,(6)
- November, 2007-11,(4)
|
|
|
Blog posts for the month of October,2019.
|
|
| Pecan Fest | 10/11/2019 9:00:54 AM |
Pecan Fest
DataView RowFilter Syntax [C#]
This example describes syntax of DataView.RowFilter expression. It shows how to correctly build expression string (without „SQL injection“) using methods to escape values.
Column names
If a column name contains any of these special characters ~ ( ) # \ / = > < + - * % & | ^ ' " [ ] , you must enclose the column name within square brackets [ ] . If a column name contains right bracket ] or backslash \ , escape it with backslash (\] or \\ ).
[C#]
dataView.RowFilter = "id = 10";
dataView.RowFilter = "$id = 10";
dataView.RowFilter = "[#id] = 10";
dataView.RowFilter = "[[id\]] = 10";
Literals
String values are enclosed within single quotes ' ' . If the string contains single quote ' , the quote must be doubled.
[C#]
dataView.RowFilter = "Name = 'John'"
dataView.RowFilter = "Name = 'John ''A'''"
dataView.RowFilter = String.Format("Name = '{0}'", "John 'A'".Replace("'", "''"));
Number values are not enclosed within any characters. The values should be the same as is the result of int.ToString() or float.ToString() method for invariant or English culture.
[C#]
dataView.RowFilter = "Year = 2008"
dataView.RowFilter = "Price = 1199.9"
dataView.RowFilter = String.Format(CultureInfo.InvariantCulture.NumberFormat,
"Price = {0}", 1199.9f);
Date values are enclosed within sharp characters # # . The date format is the same as is the result of DateTime.ToString() method for invariant or English culture.
[C#]
dataView.RowFilter = "Date = #12/31/2008#"
dataView.RowFilter = "Date = #2008-12-31#"
dataView.RowFilter = "Date = #12/31/2008 16:44:58#"
dataView.RowFilter = String.Format(CultureInfo.InvariantCulture.DateTimeFormat,
"Date = #{0}#", new DateTime(2008, 12, 31, 16, 44, 58));
Alternatively you can enclose all values within single quotes ' ' . It means you can use string values for numbers or date time values. In this case the current culture is used to convert the string to the specific value.
[C#]
dataView.RowFilter = "Date = '12/31/2008 16:44:58'"
dataView.RowFilter = "Date = '31.12.2008 16:44:58'"
dataView.RowFilter = "Price = '1199.90'"
dataView.RowFilter = "Price = '1199,90'"
Comparison operators
Equal, not equal, less, greater operators are used to include only values that suit to a comparison expression. You can use these operators = <> < <= > >= .
Note: String comparison is culture-sensitive, it uses CultureInfo from DataTable.Locale property of related table (dataView.Table.Locale ). If the property is not explicitly set, its default value is DataSet.Locale (and its default value is current system culture Thread.CurrentThread.CurrentCulture).
[C#]
dataView.RowFilter = "Num = 10"
dataView.RowFilter = "Date < #1/1/2008#"
dataView.RowFilter = "Name <> 'John'"
dataView.RowFilter = "Name >= 'Jo'"
Operator IN is used to include only values from the list. You can use the operator for all data types, such as numbers or strings.
[C#]
dataView.RowFilter = "Id IN (1, 2, 3)"
dataView.RowFilter = "Price IN (1.0, 9.9, 11.5)"
dataView.RowFilter = "Name IN ('John', 'Jim', 'Tom')"
dataView.RowFilter = "Date IN (#12/31/2008#, #1/1/2009#)"
dataView.RowFilter = "Id NOT IN (1, 2, 3)"
Operator LIKE is used to include only values that match a pattern with wildcards. Wildcard character is * or % , it can be at the beginning of a pattern '*value' , at the end 'value*' , or at both '*value*' . Wildcard in the middle of a patern 'va*lue' is not allowed.
[C#]
dataView.RowFilter = "Name LIKE 'j*'"
dataView.RowFilter = "Name LIKE '%jo%'"
dataView.RowFilter = "Name NOT LIKE 'j*'"
If a pattern in a LIKE clause contains any of these special characters * % [ ] , those characters must be escaped in brackets [ ] like this [*] , [%] , [[] or []] .
[C#]
dataView.RowFilter = "Name LIKE '[*]*'"
dataView.RowFilter = "Name LIKE '[[]*'"
The following method escapes a text value for usage in a LIKE clause.
[C#]
public static string EscapeLikeValue(string valueWithoutWildcards)
{
StringBuilder sb = new StringBuilder();
for (int i = 0; i < valueWithoutWildcards.Length; i++)
{
char c = valueWithoutWildcards[i];
if (c == '*' || c == '%' || c == '[' || c == ']')
sb.Append("[").Append(c).Append("]");
else if (c == '\'')
sb.Append("''");
else
sb.Append(c);
}
return sb.ToString();
}
[C#]
string value = "*";
dataView.RowFilter = String.Format("Name LIKE '{0}*'", EscapeLikeValue(value));
Boolean operators
Boolean operators AND , OR and NOT are used to concatenate expressions. Operator NOT has precedence over AND operator and it has precedence over OR operator.
[C#]
dataView.RowFilter = "City = 'Tokyo' AND (Age < 20 OR Age > 60)";
dataView.RowFilter = "City <> 'Tokyo' AND City <> 'Paris'";
dataView.RowFilter = "NOT City = 'Tokyo' AND NOT City = 'Paris'";
dataView.RowFilter = "NOT (City = 'Tokyo' OR City = 'Paris')";
dataView.RowFilter = "City NOT IN ('Tokyo', 'Paris')";
Arithmetic and string operators
Arithmetic operators are addition + , subtraction - , multiplication * , division / and modulus % .
[C#]
dataView.RowFilter = "MotherAge - Age < 20";
dataView.RowFilter = "Age % 10 = 0";
There is also one string operator concatenation + .
Parent-Child Relation Referencing
A parent table can be referenced in an expression using parent column name with Parent. prefix. A column in a child table can be referenced using child column name with Child. prefix.
The reference to the child column must be in an aggregate function because child relationships may return multiple rows. For example expression SUM(Child.Price) returns sum of all prices in child table related to the row in parent table.
If a table has more than one child relation, the prefix must contain relation name. For example expression Child(OrdersToItemsRelation).Price references to column Price in child table using relation named OrdersToItemsRelation.
Aggregate Functions
There are supported following aggregate functions SUM , COUNT , MIN , MAX , AVG (average), STDEV (statistical standard deviation) and VAR (statistical variance).
This example shows aggregate function performed on a single table.
[C#]
dataView.RowFilter = "Salary > AVG(Salary)";
Following example shows aggregate functions performed on two tables which have parent-child relation. Suppose there are tables Orders and Items with the parent-child relation.
[C#]
dataView.RowFilter = "COUNT(Child.IdOrder) > 5";
dataView.RowFilter = "SUM(Child.Price) >= 500";
Functions
There are also supported following functions. Detailed description can be found here DataColumn.Expression.
CONVERT – converts particular expression to a specified .NET Framework type
LEN – gets the length of a string
ISNULL – checks an expression and either returns the checked expression or a replacement value
IIF – gets one of two values depending on the result of a logical expression
TRIM – removes all leading and trailing blank characters like \r, \n, \t, ‚ ‘
SUBSTRING – gets a sub-string of a specified length, starting at a specified point in the string
See also
|
|
Blog Home
|
|
|