SqlCommand.Connection Proprietà

Definizione

Ottiene o imposta l'oggetto SqlConnection utilizzato da questa istanza di SqlCommand .

public:
 property Microsoft::Data::SqlClient::SqlConnection ^ Connection { Microsoft::Data::SqlClient::SqlConnection ^ get(); void set(Microsoft::Data::SqlClient::SqlConnection ^ value); };
public Microsoft.Data.SqlClient.SqlConnection Connection { get; set; }
member this.Connection : Microsoft.Data.SqlClient.SqlConnection with get, set
Public Property Connection As SqlConnection

Valore della proprietà

Connessione a un'origine dati. Il valore predefinito ènull .

Eccezioni

La proprietà Connection è stata modificata mentre il comando era inserito in una transazione.

Esempio

L'esempio seguente crea un oggetto SqlCommand e imposta alcune delle relative proprietà.

// <Snippet1>
using System;
using System.Data;
using Microsoft.Data.SqlClient;


namespace SqlCommandCS
{
    class Program
    {
        static void Main()
        {
            string str = "Data Source=(local);Initial Catalog=Northwind;"
                + "Integrated Security=SSPI";
            string qs = "SELECT OrderID, CustomerID FROM dbo.Orders;";
            CreateCommand(qs, str);
        }

        private static void CreateCommand(string queryString,
            string connectionString)
        {
            using (SqlConnection connection = new SqlConnection(
                       connectionString))
            {
                SqlCommand command = new SqlCommand();
                command.Connection = connection;
                command.CommandTimeout = 15;
                command.CommandType = CommandType.Text;
                command.CommandText = queryString;

                connection.Open();
                SqlDataReader reader = command.ExecuteReader();
                while (reader.Read())
                {
                    Console.WriteLine(String.Format("{0}, {1}",
                        reader[0], reader[1]));
                }
            }
        }
        // </Snippet1>
    }
}

Commenti

Se il comando è elencato in una transazione esistente e la connessione viene modificata, il tentativo di eseguire il comando genererà un InvalidOperationExceptionoggetto .

Se la proprietà Transaction non è Null ed è già stato eseguito il rollback o il commit della transazione, Transaction verrà impostato su Null.

Si applica a