Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Question about DataView.RowFilter

Status
Not open for further replies.

TheDust

Programmer
Aug 12, 2002
217
US
How come this line of code runs fine...

clientsView.RowFilter = "clientName LIKE '" + indexLetter + "%'";

... and this one is not understood?

clientsView.RowFilter = "clientName REGEXP '^[^A-Za-z]'";

This query is trying to view only rows that start with a number. What part of this SQL does ASP.NET refuse to take?

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top