DSN-less connections
Altough we provide ODBC, if you need more than one database or simply feel more comfortable using DSN-less connections here are the guidelines;
For Access databases:
strCon = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath(strDbPathAndName)
For Dbase
strCon = "Driver={Microsoft dBASE Driver (*.dbf)};DriverID=277;Dbq=" & Server.MapPath(strDbPathAndName)&";"
back