Untitled
unknown
plain_text
a year ago
358 B
3
Indexable
public int DeleteByColumn(string tableName, string columnName, string value) { var command = new SqlCommand { CommandType = CommandType.Text, CommandText = "delete from " + tableName + " where " + columnName + " = " + value + ";", Connection = _connector.GetConnection() }; return command.ExecuteNonQuery(); }
Editor is loading...
Leave a Comment