델파이로 mssql 데이터베이스 연결
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | var msConnection : TMSConnection; begin msConnection := TMSConnection.Create(nil); with msConnection do begin try DisConnect; Authentication := auServer; Username := id; Password := pw; Server := serverip; Database := dbname; Connect; except on E : Exception do begin DisConnect; exit; end; end; end; end; | cs |
'IT > Delphi' 카테고리의 다른 글
델파이로 mssql 데이터베이스 데이터 가져오기 (0) | 2017.02.10 |
---|---|
mssql 에서의 image필드를 파일로 만들기 (0) | 2017.01.18 |