greenapple.Connectoperations.delete C# (CSharp) Метод

delete() публичный Метод

deletes records from the database
public delete ( string table, string where ) : int
table string table from whic data is to be deleted
where string the where clause used eg 'where id=1'
Результат int
        public int delete(string table,string where)
        {
            return mycon.nonqry("DELETE FROM " + table +" " + where);
        }