Untitled
unknown
plain_text
2 years ago
358 B
11
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