SqlConnection conn = new SqlConnection("server=zzy;integrated security=sspi;database=library");
SqlCommand cmd;
private void btninsert_Click(object sender, EventArgs e)
{
conn.Open();
string _sql = "insert into login values('{0}','{1}','{2}')";
/*
Format方法:
①、string.Format(string format,object arg0);
②、string.Format(string format,params object[] args);
③、string.Format(IFormatProvider provider,string format,params object[] args);
④、string.Format(string format,object arg0,object arg1,object arg2);
*/
//④:string.Format(string format,object arg0,object arg1,object arg2);
_sql = string.Format(_sql, this.textBox1.Text.ToString().Trim(),this.textBox2.Text.ToString().Trim(),this.textBox3.Text.ToString().Trim());
/*
②:string.Format(string format,params object[] args);
object[] aa = new object[] { 'a', 'b', 'c', 'd', 'e' };
_sql = String.Format(_sql, aa);
*/
cmd = new SqlCommand(_sql, conn);
cmd.ExecuteNonQuery();
conn.Close();
MessageBox.Show("Insert the values Successfully!");
}
SqlCommand cmd;
private void btninsert_Click(object sender, EventArgs e)
{
conn.Open();
string _sql = "insert into login values('{0}','{1}','{2}')";
/*
Format方法:
①、string.Format(string format,object arg0);
②、string.Format(string format,params object[] args);
③、string.Format(IFormatProvider provider,string format,params object[] args);
④、string.Format(string format,object arg0,object arg1,object arg2);
*/
//④:string.Format(string format,object arg0,object arg1,object arg2);
_sql = string.Format(_sql, this.textBox1.Text.ToString().Trim(),this.textBox2.Text.ToString().Trim(),this.textBox3.Text.ToString().Trim());
/*
②:string.Format(string format,params object[] args);
object[] aa = new object[] { 'a', 'b', 'c', 'd', 'e' };
_sql = String.Format(_sql, aa);
*/
cmd = new SqlCommand(_sql, conn);
cmd.ExecuteNonQuery();
conn.Close();
MessageBox.Show("Insert the values Successfully!");
}
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】博客园社区专享云产品让利特惠,阿里云新客6.5折上折
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步