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?
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?