Hi,
I am trying to filter a filename in dataset, below is my code
sQry=filename LIKE 'abcd%ef''%'
datarowFile = datasetFiles.Tables(0).Select(sQry)
But i am getting below error message while filtering the value in dataset
Error in Like operator: the string pattern 'abcd%ef'%' is invalid.
How to resolve the filter issue in dataset.
Thanks,
JJ