Beispiel #1
0
        public static int Delete(int id)
        {
            string sql = string.Format("delete from Comments where id = {0}", id);

            return(OleDbHelper.ExecuteCommand(sql));
        }