greenapple.Connectoperations.delete C# (CSharp) Method

delete() public method

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'
return int
        public int delete(string table,string where)
        {
            return mycon.nonqry("DELETE FROM " + table +" " + where);
        }