SqlBatch 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
public ref class SqlBatch : System::Data::Common::DbBatch
public class SqlBatch : System.Data.Common.DbBatch
type SqlBatch = class
inherit DbBatch
Public Class SqlBatch
Inherits DbBatch
- 继承
-
SqlBatch
示例
以下示例创建 SqlConnection 和 SqlBatch,然后将多个 SqlBatchCommand 对象添加到批处理。 然后,它执行批处理,创建 SqlDataReader。 该示例通读批处理命令的结果,并将其写入控制台。 最后,该示例关闭 , SqlDataReader 然后在 SqlConnection 块退出范围时 using
关闭 。
using Microsoft.Data.SqlClient;
class Program
{
static void Main()
{
string str = "Data Source=(local);Initial Catalog=Northwind;"
+ "Integrated Security=SSPI;Encrypt=False";
RunBatch(str);
}
static void RunBatch(string connString)
{
using var connection = new SqlConnection(connString);
connection.Open();
var batch = new SqlBatch(connection);
const int count = 10;
const string parameterName = "parameter";
for (int i = 0; i < count; i++)
{
var batchCommand = new SqlBatchCommand($"SELECT @{parameterName} as value");
batchCommand.Parameters.Add(new SqlParameter(parameterName, i));
batch.BatchCommands.Add(batchCommand);
}
// Optionally Prepare
batch.Prepare();
var results = new List<int>(count);
using (SqlDataReader reader = batch.ExecuteReader())
{
do
{
while (reader.Read())
{
results.Add(reader.GetFieldValue<int>(0));
}
} while (reader.NextResult());
}
Console.WriteLine(string.Join(", ", results));
}
}
构造函数
SqlBatch() |
初始化新的 SqlBatch。 |
SqlBatch(SqlConnection, SqlTransaction) |
初始化新的 SqlBatch。 |
属性
BatchCommands |
批处理中包含的 SqlBatchCommandCollection命令列表。 |
Commands |
对象 中的 批处理IListSqlBatchCommand中包含的命令列表。 |
Connection |
获取或设置 SqlConnection 的此实例 SqlBatch 使用的 。 |
DbBatchCommands |
获取 SqlBatchCommand 对象的集合。 |
DbConnection |
获取或设置此 DbConnection 使用的 SqlBatch。 |
DbTransaction |
获取或设置将在其中执行此 SqlBatch 对象的 SqlTransaction。 |
Timeout |
获取或设置 (等待时间(以秒为单位)) ,然后终止尝试执行批处理并生成错误。 |
Transaction |
获取或设置 SqlTransaction 在其中执行命令的 SqlBatch 。 |