public static void ExecuteNonQuery( string sql1, CommandType commandType, params object[] pars) { //sql c = new sql(); sql con = new sql(frmMain.me.sql); SqlConnection con1 = con.getCon(); con1.Open(); SqlCommand com = new SqlCommand(sql1, con1); com.CommandType = commandType; for (int i = 0; i < pars.Length; i += 2) { SqlParameter par = new SqlParameter(pars[i].ToString(), pars[i + 1]); com.Parameters.Add(par); } try { com.ExecuteNonQuery(); } catch (SqlException e) { if (e.Number == 2627) { RadMessageBox.Show("\nMã này đã tồn tại !\n", "Thông Báo", MessageBoxButtons.OK, RadMessageIcon.Exclamation); } else if (e.Number == 229) { RadMessageBox.Show("\nBạn không có quyền chỉnh sửa thông tin này !\n", "Thông Báo", MessageBoxButtons.OK, RadMessageIcon.Exclamation); } else { RadMessageBox.Show("" + e.Number + " " + e.Errors + e.Message); } } con1.Close(); }
//# public frmMain() { readFile c = new readFile(); c.readfile(); string strServerName = ""; string strDatabase = ""; if (c.strLine1.Contains("Server:") == true) { strServerName = c.strLine1.Substring(7); } if (c.strLine2.Contains("Database:") == true) { strDatabase = c.strLine2.Substring(9); } InitializeComponent(); sql = new sql(strServerName, strDatabase, "U0", "123"); me = this; }
public sql(sql sql) { user = sql.user; scon = sql.scon; }