-5

我的网站(远程)上有一个 sql server 表。该表被调用table1,它有 1 个名为 的字段f1。我的目标是使用 C# 方法将字符串“hello there”插入其中,其签名如下:

AddTof1(string s) 
{

}

有任何想法吗?

4

1 回答 1

0
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");
于 2013-05-18T10:49:06.067 回答