Connection String to Access database : Microsoft Jet « Access « VBA / Excel / Access / Word






Connection String to Access database

 

Sub AccessExample()

    Dim rs As ADODB.Recordset
    Dim cn As ADODB.Connection
    
    Set cn = New ADODB.Connection
    cn.Provider = "Microsoft.Jet.OLEDB.4.0;"
    cn.ConnectionString = "Data Source=C:\mydb.mdb"
    cn.Open
    
    Debug.Print "Full connection string: " & cn.ConnectionString
    
    Set rs = cn.OpenSchema(adSchemaTables)
    Do While Not rs.EOF
        Debug.Print rs!TABLE_NAME & "  Type: " & rs!TABLE_TYPE
        rs.MoveNext
    Loop
    rs.Close
    cn.Close
End Sub

 








Related examples in the same category

1.Include the database version information with the JetOLEDB:Engine Type property
2.connect to JET
3.Read table schema
4.Use Recordset.Support to check the supported features
5.Create new database
6.Open a worksheet through OLEDB
7.Opening a Microsoft Jet Database in Read/Write Mode
8.Sub addJetSqlUser()
9.A Simple Connection Example