Link to home
Start Free TrialLog in
Avatar of i003814
i003814

asked on

Connection string for maxDB

Today, I am using MS Access database files but need to move to maxDB.
Can anyone provide connection string for maxDB 7.5. to replace the current one below ?
Thanks for your help.


        'Get the Database Path, to be used in DB Connection String
        Dim sDBPath As String = Request.MapPath(".") & "\db\bingo.mdb"

        'Define DB Connection String
        Dim sCnnString As String = "Provider=Microsoft.Jet.Oledb.4.0;" & _
                                   "Data Source=" & sDBPath

        'Populate Connection Object
        Dim conn As New OleDbConnection(sCnnString)
ASKER CERTIFIED SOLUTION
Avatar of ihenry
ihenry

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial