N
嗨,有一个 sql 字符串想要将数据插入到 sql server 中,当我添加 @value 之类的值时如何使用
SqlCommand cmd = new SqlCommand("Insert into News (News,title) values (@news,@title)", conn);
string news = TextBox1.Text;
string title = TextBox2.Text;
cmd.Parameters.AddWithValue(@"news", news);
cmd.Parameters.AddWithValue(@"title", title);