Пример #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            try
            {
                ArrayList param = new ArrayList();
                param.Add(19);

                DBHandler db = new DBHandler();
                long accountId;
                string Message = db.DeleteAccount(1, param, out accountId);
                MessageBox.Show(Message);
            }
            catch (Exception ex)
            {

                MessageBox.Show(ex.Message);
            }
        }