'연결'에 해당되는 글 2건
-
2017.01.19
-
2017.01.18
php로 mssql 연결
dbcon.php
1 2 3 4 5 6 7 8 9 | <?php $username = 'username'; $pass = 'password!'; $ip = 'ip'; $dbname = 'dbname'; $connection_string = "Driver={SQL Server};Server=".$ip.";Database=".$dbname; $conn = odbc_connect($connection_string,$username,$pass); ?> | cs |
'IT > PHP' 카테고리의 다른 글
[php게시판 만들기] 로그인 화면 체크 (9) | 2017.01.20 |
---|---|
[php게시판 만들기] 로그인 화면 (3) | 2017.01.20 |
[php게시판 만들기] 게시판 전체 구조 설명 (0) | 2017.01.19 |
[php게시판 만들기] xampp 설치 (0) | 2017.01.19 |
php로 mysql 연결 (1) | 2017.01.19 |
델파이로 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 |