목차
DAO를 이용한 DBF 파일 연결하기
ADO로 DBF 연결시 연결 구문
ADO로 DBF 연결시 연결 구문
본문내용
es;Collate=MACHINE;Null=Yes;\"
adoCon.Open\' DB에 연결한다.
sFilename = \"test.dbf\"\' DB 파일명
sQuery = \"select * from \" & sFilename
adoRs.Open sQuery, adoCon, adOpenDynamic
MsgBox adoRs.Fields(0).Value
End Sub
adoCon.Open\' DB에 연결한다.
sFilename = \"test.dbf\"\' DB 파일명
sQuery = \"select * from \" & sFilename
adoRs.Open sQuery, adoCon, adOpenDynamic
MsgBox adoRs.Fields(0).Value
End Sub
소개글