Adds Delete Row.

This commit is contained in:
Twitchy 2011-08-07 20:10:22 +12:00
parent a435966f07
commit 203f3aa570
2 changed files with 38 additions and 0 deletions

View file

@ -76,5 +76,10 @@ namespace TShockAPI.DB
return ret;
}
public void DeleteRow(string table, List<SqlValue> wheres)
{
database.Query(creator.DeleteRow(table, wheres));
}
}
}