Mit einem Datenbankcontainer:
1 2 3 4 |
oConn.Open "Driver={Microsoft Visual FoxPro Driver};" & _ "SourceType=DBC;" & _ "SourceDB=c:\somepath\mySourceDb.dbc;" & _ "Exclusive=No" |
Ohne einen Datenbankcontainer (Freies Tabellenverzeichnis):
1 2 3 4 |
oConn.Open "Driver={Microsoft Visual FoxPro Driver};" & _ "SourceType=DBF;" & _ "SourceDB=c:\somepath\mySourceDbFolder;" & _ "Exclusive=No" |