SqlCommand.Connection プロパティ

定義

のこのインスタンスで使用される を取得または設定 SqlConnection します 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

プロパティ値

データ ソースへの接続。 既定値はnull .

例外

コマンドがトランザクションに登録されていた間に、Connection プロパティが変更されました。

次の例では、 を SqlCommand 作成し、そのプロパティの一部を設定します。

// <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>
    }
}

注釈

コマンドが既存のトランザクションに参加していて、接続が変更された場合、コマンドを実行しようとすると が InvalidOperationExceptionスローされます。

Transaction プロパティが NULL でない場合、トランザクションが既にコミット済みまたはロールバック済みであれば、Transaction は NULL に設定されます。

適用対象