一、任務(wù)需求
在管理員主界面連接后臺數(shù)據(jù)凉当,完成新用戶注冊
二枣申、前期準(zhǔn)備(相關(guān)界面)
三、主要代碼
private void bt_Ok_Click(object sender, EventArgs e)
{
String name = this.tb_Name.Text.Trim();
String age = this.tb_Age.Text.Trim();
String password = this.tb_Password.Text.Trim();
String xb = this.tb_XB.Text.Trim();
String type = this.cb_Type.Text.Trim();
// 連接字符串看杭,注意與實(shí)際環(huán)境保持一致
String connStr = ConfigurationManager.ConnectionStrings["KQ"].ConnectionString;
SqlConnection sqlConn = new SqlConnection(connStr);
try
{
// 連接數(shù)據(jù)庫
sqlConn.Open();
// 構(gòu)造命令
String sqlStr = "insert into USERS (NAME,AGE,PASSWORD,TYPE,XB)values(@name,@age,@password,@type,@xb)";
SqlCommand cmd = new SqlCommand(sqlStr, sqlConn);
// SQL字符串參數(shù)賦值
cmd.Parameters.Add(new SqlParameter("@name", name));
cmd.Parameters.Add(new SqlParameter("@age", age));
cmd.Parameters.Add(new SqlParameter("@password", password));
cmd.Parameters.Add(new SqlParameter("@type", type));
cmd.Parameters.Add(new SqlParameter("@xb", xb));
// 將命令發(fā)送給數(shù)據(jù)庫
int res = cmd.ExecuteNonQuery();
// 根據(jù)返回值判斷是否插入成功
if (res != 0)
{
MessageBox.Show("商品信息錄入成功");
}
else
{
MessageBox.Show("商品信息錄入失敗");
}
}
catch (Exception exp)
{
MessageBox.Show("訪問數(shù)據(jù)庫錯誤:" + exp.Message);
}
finally
{
sqlConn.Close();
}
}
四忠藤、成果展示