Setting the RowFilter of DataView to perform Case Insensitve filter

  • Thread starter Thread starter K Balusu
  • Start date Start date
K

K Balusu

Hi,
Is there anyway to filter a dataview in a case-insensitive way. The
DataView's RowFilter doesn't support the "LOWER" function. Is there a
way with out setting the DataSet.CaseSensitive property.

TIA,
K Balusu
 
The default is case insensitive. So u do not have to do anything.

The. foll. is given in the MSDN help and RowFilter works that way only.

"Whether string comparisons are case-sensitive or not is determined by the value of the DataSet class's CaseSensitive property. However, you can override that value with the DataTable class's CaseSensitive property."
 
Back
Top