c# 2.0 - Filtering a DataSet using Select NOT LIKE (ASP.net 2 Webforms) -
I'm trying to query a dataset with a stored procedure, but I'm messing around somewhere .. < / P>
  special Data source = dtibles ["special"]. Select (No such as "My ColumnName" BB '%');   Anything wrong with the above description.
percent symbol in the wrong place
  special. Data source = dtibles ["special"]. Select ("'mycolumnname' ' Not like BB '%);   must be
  special Data source = ds.Tables ["special"] Select (not like "mycolumnname 'BB%' ');   
Comments
Post a Comment