我的网站(远程)上有一个 sql server 表。该表被调用table1
,它有 1 个名为 的字段f1
。我的目标是使用 C# 方法将字符串“hello there”插入其中,其签名如下:
AddTof1(string s)
{
}
有任何想法吗?
我的网站(远程)上有一个 sql server 表。该表被调用table1
,它有 1 个名为 的字段f1
。我的目标是使用 C# 方法将字符串“hello there”插入其中,其签名如下:
AddTof1(string s)
{
}
有任何想法吗?
AddTof1(string s)
{
using (SqlConnection connection = new SqlConnection(connectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand("INSERT INTO table1 values(@s)", connection))
{
command.Parameters.AddWithValue("@s", s);
command.ExecuteNonQuery();
}
}
}
然后您可以将此方法称为;
AddTof1("hello there");