到目前为止,我正在创建两个 sql 命令来运行两个不同的查询。我想知道如果我将运行相同的 sql 命令来执行这两个查询,性能是否会改变这是我到目前为止的方法using (SqlConnection connection = new SqlConnection(connectionString)){connection.Open();using (SqlCommand command1 = new SqlCommand(commandText1, connection)){}using (SqlCommand command2 = new SqlCommand(commandText2, connection)){}// etc}方法二var command = new SqlCommand("<SQL Command>", myConnection); command.ExecuteNonQuery();command.CommandText = "<New SQL Command>"; command.ExecuteNonQuery();性能是否有任何差异,或者我将使用什么并不重要。
1 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
性能差异可以忽略不计,但如果您永远并且总是想要运行这两个确切的查询,方法 2 可以节省打开与数据库的新连接。但是您需要command.Parameters.Clear();
在设置新command.CommandText
属性之前调用
- 1 回答
- 0 关注
- 189 浏览
添加回答
举报
0/150
提交
取消