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

Popular posts from this blog

windows - Heroku throws SQLITE3 Read only exception -

lex - Building a lexical Analyzer in Java -

python - rename keys in a dictionary -