다음을 통해 공유


SqlCommand.Connection 속성

정의

의 이 인스턴스 SqlCommand 에서 SqlConnection 사용되는 를 가져오거나 설정합니다.

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

설명

명령이 기존 트랜잭션에 등록되고 연결이 변경되면 명령을 실행하려고 하면 가 InvalidOperationExceptionthrow됩니다.

Transaction 속성이 null이 아니고 트랜잭션이 이미 커밋 또는 롤백된 경우에는 Transaction이 null로 설정됩니다.

적용 대상