For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET?
I did this:
OleDbCommand cmd = new OleDbCommand("SELECT * FROM table1 WHERE Tags= programming ", conn);
OleDbDataReader = cmd.ExecuteReader();
What should I do next?