代码实现:
[WebMethod]
public bool insertInfo(String text)
{
//连接SQL数据库
System.Data.SqlClient.SqlConnection SqlCnn = new System.Data.SqlClient.SqlConnection("Data Source=JOHN;Initial Catalog=webservice;User ID=sa;Password=12345678;");
//打开数据库连接
SqlCnn.Open();
string sqlstr = "insert into dbo.note (value) values('" + text + "')";
System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand();
cmd.Connection = SqlCnn;
cmd.CommandType = System.Data.CommandType.Text;
cmd.CommandText = sqlstr;
//执行
cmd.ExecuteNonQuery();
//关闭数据库
SqlCnn.Close();
return true;
}
注意:在添加信息时,SQL中的引用变量的格式为 " +变量+ "
,两边都要加双引号