SQL Server 접근할 때  connection string 이 필요하다. 로컬 작업할 때는 별도 id / password 가 아니라 로그인한 계정을 그대로 사용하고 싶은데 이 때 Trusted Connection 를 이용한다. OLE DB Driver 를 사용할 때는 아래와 같은 connection string을 사용했다.

Provider=MSOLEDBSQL; Server=myServerAddress; Database=myDataBase; Trusted_Connection=yes;

.net client 에서는 위 connection string 이 안 먹혀서 지원이 안되나 싶었는데 알고보니 connection string이 달랐다.

Server=myServerAddress; Database=myDataBase; Trusted_Connection=True;

.net client 에서는 yes 가 아닌 True 라고 적어줬어야 했다. 

참고 : SQL Server connection strings

 

SQL Server connection strings - ConnectionStrings.com

 

www.connectionstrings.com

 

728x90

+ Recent posts