Q&A

  • Delphi 7 과 MS-SQL 2000 을 ADO로 연결 방법 ..
Delphi 7 과 MS-SQL 2000 을 연결하기 위해 ADO를 사용하고자 합니다.
생각처럼 쉽게 않되네요.    

1) 개발용 PC에 별도로 깔아야 하는게 있는지요?   (DLL등..)
2) ADOConnection의 연결속성에 "데이타 원본이름"란에 IP를 줘도 연결이 않되는데
    뭐가 잘못된거죠?

---  초보라서 쉽게 설명 부탁드립니다  ^^*
2  COMMENTS
  • Profile
    우소 2006.04.14 20:26
    <!--CodeS-->

    LasDbCon: TADOConnection;


    sADOconfig := sADOconfig + 'Provider=' + sRDBMSName          + ';';
        sADOconfig := sADOconfig + 'Password=' + edPassword.Text     + ';';
        sADOconfig := sADOconfig + 'Persist Security Info=True'      + ';';
        sADOconfig := sADOconfig + 'User ID=' + edLoginID.Text       + ';';
        sADOconfig := sADOconfig + 'Initial Catalog=' + edDBNme.Text + ';';
        sADOconfig := sADOconfig + 'Data Source=' + edDBServerIP.Text;
    <== 연결 정보를 입력 받아서 연결 스트링을 만들어서 연결하면 됩니다.
    아니면 컴포넌트에서 테스트로 연결해서 연결이 되면 그때생긴 스트링을 보면 알수있습니다.

        //Provider=SQLOLEDB.1;Password=123456;Persist Security Info=True;User D=userid;Initial atalog=DatabaseName;Data Source=127.0.0.1
        with DataM.LasDbCon do
        begin
          if Connected then Close;
          ConnectionString := sADOconfig;
          Open;
        end;
    <!--CodeE-->

  • Profile
    철푸덕 2006.04.18 19:15
    감사합니다.
    덕분에 연결에 성공했습니다.  
    위에 또 부탁드릴 문제가 있네요 ^^*