展开全部
update 表名称 set 列名称 = 新值 where 列名称 = 某值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用SQL语句啊
追问
大哥我要完整的。。
追答
private void btReg_Click(object sender, EventArgs e)
{
int result = 0;
if (CheckInput())
{
string sql = string.Format("INSERT INTO Users (LoginPwd,UNickname,USex,UAge,UName,UStarid,Ubloodtypeid,UEmail,Uproblemid,Uanswer,UState,FaceId)VALUES('{0}','{1}','{2}','{3}','{4}','{5}','{6}','{7}','{8}','{9}',5,0)", txtPwd1.Text, txtNick.Text, (rbMan.Checked ? rbMan.Text : rbWoman.Text),Convert.ToInt32(txtAge.Text),txtname.Text,(cmStar.SelectedIndex+1),(cmbloodtype.SelectedIndex+1),txtEmail.Text,(cmproblem.SelectedIndex+1),txtanswer.Text,5,0);
SqlConnection con = new SqlConnection(ConfigurationManager.AppSettings["ConnectionString"].ToString());
SqlCommand cmd = new SqlCommand(sql, con);
try
{
con.Open();
result = cmd.ExecuteNonQuery();
if (result == 1)
{
sql = "select @@Identity from Users";
cmd.CommandText = sql;
MessageBox.Show("注册成功!你的号码为:" + Convert.ToInt32(cmd.ExecuteScalar()) + ",请记好!", "注册提示");
}
else
{
MessageBox.Show("注册失败!", "注册提示");
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
con.Close();
}
this.Close();
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询