gpt4 book ai didi

c# - 使用Enterprise库将数据插入SQL Server数据库的代码

转载 作者:太空狗 更新时间:2023-10-29 18:19:11 24 4
gpt4 key购买 nike

我是 C# Windows 应用程序编码和使用企业库的新手。

我想使用 Enterprise Library 4.1 将记录插入到 SQL Server 2008 数据库中

我对 SQLCommand 和 DBCommand 感到困惑,不知道该用哪个,什么时候用。

最佳答案

您不需要使用 EntLib,只需使用旧的好 ADO.NET:

using (SqlConnection connection = new SqlConnection(connectionString))
using (SqlCommand command = connection.CreateCommand())
{
command.CommandText = "INSERT INTO table (column) VALUES (@param)";

command.Parameters.AddWithValue("@param", value);

connection.Open();
command.ExecuteNonQuery();
}

这是 MSDN 上的类签名:

public sealed class SqlCommand : DbCommand, ICloneable

SqlCommand 派生自 DbCommand

关于c# - 使用Enterprise库将数据插入SQL Server数据库的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6160413/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com