Procedures : Connection String for MSACCESS database ? Print

  • 0

Sample String :

Please refer the below sample connection string for MSACCESS database

MS Access 2000

<%
set con=server.createobject("adodb.connection")
db = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.Mappath("foldername/database.mdb")
con.open db
%>


 


Was this answer helpful?

« Back