12.6.2 System.Data.SqlClient를 위한 데이터베이스 연결 문자열 샘플
SQL Server에 접근할 수 있는 데이터베이스 연결 문자열은 다음과 같은 스타일로 지정한다.
• Server=localhost; Initial Catalog=master; Integrated Security=true;
• Server=localhost; Database=master; User ID=UserId; Password=xyz;
서버를 지정할 때는 다음과 같이 프로토콜, 서버명(IP 주소), 인스턴스명, 포트번호 등을 설정할 수 있다.
• Server=tcp:ServerName\InstanceName,1433