vbscript create adodb connection

Solutions on MaxInterview for vbscript create adodb connection by the best coders in the world

showing results for - "vbscript create adodb connection"
Andrea
02 Nov 2017
1Dim objConn 'As ADODB.Connection'
2Set objConn = Server.CreateObject("ADODB.Connection")
3
4Dim strPath 'As String'
5strPath = Server.MapPath("\App_Data\direkt.mdb")
6Call objConn.Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strPath)