What is the connection string using DSN for MS-ACCESS ?
Connection String using DSN —————————————– When you have opted for a database we configure the DSN with an access database, in this case you can utilize the below given connection strings in your code/snippets to get connected to the Access Database set conn = server.createobject(“ADODB.Connection”) conn.Open “Data Source=dsn_name” Note: – Replace dsn_name in the above string with the DSN name provided to you for your database.