OLE DB 설정 : 원격 접속 테스트

    1. DB접속을 위한 4가지 필수 조건(항목) : 커넥션 스트링(Connection String)
      1. Server / Data Source
      2. Database / Initial Catalog
      3. User ID / Uid
      4. Password / Pwd
    1. 데이터베이스 연결문자열 : 닷넷 프로그래밍에서 필요
      1. ConnectionString = "Server=(local)\SQLExpress;Database=MyDatabase;User ID=My;Password=Pa$$w0rd;";
      2. ConnectionString="Data Source=(local)\SQLExpress;Initial Catalog=MyDatabase;uid=My;pwd=Pa$$w0rd;";
    1. UDL 파일을 만들어서 데이터베이스 연결문자열을 생성
      1. *.txt -> 확장자를 *.udl 변경 -> 속성 -> 4가지 정보 기록 저장 -> udl 파일을 노트패드로 열면 데이터베이스 연결문자열을 얻을 있다.
        1. ASP3.0까지는(.NET 이전버전) Provider 사용
        2. ASP.NET 이후로(.NET 이후버전) Provider 제외해서 사용


          

           
          ** 추가 참고자료

          "MyDatabase"라는 DB에 접근하려면 아래에서 4가지 정보가 필요하다.

          [oledb]

          ; Everything after this line is an OLE DB initstring
          Provider=SQLOLEDB.1;Password=rkfcl;Persist Security Info=True;User ID=My;Initial Catalog=MyDatabase;Data Source=(local)\SQLExpress

           

           

           

           



          
Posted by holland14
: