ExecuteNonQuery:连接属性尚未初始化。

ExecuteNonQuery:连接属性尚未初始化。,第1张

ExecuteNonQuery:连接属性尚未初始化。

您需要将连接分配给

SqlCommand
,可以使用构造函数或属性

cmd.InsertCommand = new SqlCommand("INSERT INTO Application VALUES (@EventLog, @TimeGenerated, @EventType, @SourceName, @ComputerName, @InstanceId, @Message) ");cmd.InsertCommand.Connection = connection1;

我强烈建议对

using-statement
实现
IDisposable
类似的任何类型使用
SqlConnection
,它还会关闭连接:

using(var connection1 = new SqlConnection(@"Data Source=.sqlexpress;Initial Catalog=syslog2;Integrated Security=True"))using(var cmd = new SqlDataAdapter())using(var insertCommand = new SqlCommand("INSERT INTO Application VALUES (@EventLog, @TimeGenerated, @EventType, @SourceName, @ComputerName, @InstanceId, @Message) ")){    insertCommand.Connection = connection1;    cmd.InsertCommand = insertCommand;    //.....    connection1.Open();    // .... you don't need to close the connection explicitely}

除此之外,你并不需要创建一个新的连接,并

DataAdapter
在每个条目
foreach
,即使创建,打开和关闭连接并 不能
意味着ADO.NET将创建,打开和关闭一个 物理
连接,但只是眺望用于可用连接的连接池。但是,这是不必要的开销。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5113999.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-17
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存