SqlCommand 생성자 SqlCommand 개체는 SqlConnection 개체의 CreateCommand 메서드를 이용하거나 SqlCommand 생성자 호출로 생성할 수 있습니다. 다음은 두 가지 방법을 사용한 예입니다.(예외처리 구문 생략하였음) 속성 초기값 설명 CommandText string.Empty 수행할 명령 CommandType CommandType.Text 명령 종류 Connection null 데이터 소스와 연결 SqlConnection 개체 ▷SqlCommand(string comText); SqlCommand 개체를 생성할 때 실제 수행할 명령을 인자로 전달하여 생성할 수 있으며 이 때 명령 종류를 의미하는 CommandType 속성은 CommadType.Text입니다. Com..