Compartir a través de


SqlBatchCommand Constructores

Definición

Sobrecargas

SqlBatchCommand()

Inicializa un nuevo objeto SqlBatchCommand.

SqlBatchCommand(String, CommandType, IEnumerable<SqlParameter>, SqlCommandColumnEncryptionSetting)

Inicializa un nuevo objeto SqlBatchCommand.

SqlBatchCommand()

Inicializa un nuevo objeto SqlBatchCommand.

public:
 SqlBatchCommand();
public SqlBatchCommand ();
Public Sub New ()

Ejemplos

En el ejemplo siguiente se crea y SqlConnection un objeto SqlBatch y, a continuación, se agregan varios SqlBatchCommand objetos al lote. A continuación, ejecuta el lote y crea un SqlDataReader. En el ejemplo se leen los resultados de los comandos por lotes, escribiéndolos en la consola. Por último, el ejemplo cierra SqlDataReader y, a continuación, a SqlConnection medida que los using bloques quedan fuera del ámbito.

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));
    }
}

Se aplica a

SqlBatchCommand(String, CommandType, IEnumerable<SqlParameter>, SqlCommandColumnEncryptionSetting)

Inicializa un nuevo objeto SqlBatchCommand.

public SqlBatchCommand (string commandText, System.Data.CommandType commandType = System.Data.CommandType.Text, System.Collections.Generic.IEnumerable<Microsoft.Data.SqlClient.SqlParameter> parameters = default, Microsoft.Data.SqlClient.SqlCommandColumnEncryptionSetting columnEncryptionSetting = Microsoft.Data.SqlClient.SqlCommandColumnEncryptionSetting.UseConnectionSetting);
new Microsoft.Data.SqlClient.SqlBatchCommand : string * System.Data.CommandType * seq<Microsoft.Data.SqlClient.SqlParameter> * Microsoft.Data.SqlClient.SqlCommandColumnEncryptionSetting -> Microsoft.Data.SqlClient.SqlBatchCommand
Public Sub New (commandText As String, Optional commandType As CommandType = System.Data.CommandType.Text, Optional parameters As IEnumerable(Of SqlParameter) = Nothing, Optional columnEncryptionSetting As SqlCommandColumnEncryptionSetting = Microsoft.Data.SqlClient.SqlCommandColumnEncryptionSetting.UseConnectionSetting)

Parámetros

commandText
String

El texto del SqlBatchCommand.

commandType
CommandType

Indica cómo se va a interpretar la CommandText propiedad.

parameters
IEnumerable<SqlParameter>

Se usa una colección de SqlParameter objetos para crear .SqlParameterCollection

columnEncryptionSetting
SqlCommandColumnEncryptionSetting

Configuración de cifrado. Para obtener más información, vea Always Encrypted.

Se aplica a