Ever had a user move a backend Microsoft Access database or delete it?
Here is a routine you can use to ensure that the linked table actually exists in the location specified using ADOX. Paste the function below into a new module and call it.
This comes from Total Visual SourceBook's modADOJetADOX module. There's also an equivalent set of code to use DAO in CJetLinkedTables and CJetDatabase classes.
Required References: ADO Extensions for Data Definition Language and Security (ADOX)
Public Function ADOXTestLinkedTable(cnnConnection As ADODB.Connection, strTable As String) As Boolean ' Comments : Tests the specified linked table to see if its link is valid ' Params : cnnConnection - open ADODB connection to the Jet Database ' strTable - name of the table to test ' Returns : True if the link is valid, False otherwise ' Source : Total Visual SourceBook Dim catTmp As New ADOX.Catalog Dim tblTmp As New ADOX.Table Dim strTmp As String Dim lngSaveErr As Long On Error GoTo PROC_ERR ' Open the catalog by setting its ActiveConnection property catTmp.ActiveConnection = cnnConnection ' Set a pointer to the table Set tblTmp = catTmp.Tables(strTable) If tblTmp.Properties("Jet OLEDB:Create Link") = True Then ' It is a linked table so try to open it by getting the name property of one it its fields. ' If the table's link is not valid (for example, the database it is pointing to is moved, deleted, or renamed) this call fails. ' We disable error handling to handle a potential failure. On Error Resume Next strTmp = tblTmp.Columns(0).Name ' Save the error number lngSaveErr = Err.Number ' Re-enable error handling On Error GoTo PROC_ERR ' If the save error number is not 0, an error occurred and we can assume that the link is invalid ADOXTestLinkedTable = (lngSaveErr = 0) End If ' Close the catalog to release resources Set catTmp = Nothing PROC_EXIT: Exit Function PROC_ERR: MsgBox "Error: " & Err.Number & ". " & Err.Description, , "ADOXTestLinkedTable" Resume PROC_EXIT End Function
To call the above function, all you need to do is open a connection to the database.
Function TestLink() Dim cnn As ADODB.Connection Set cnn = New ADODB.Connection ' Open the connection With cnn .CursorLocation = adUseServer .Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=C:\Northwind.mdb" End With ' Example code for ADOXTestLinkedTable with status in Immediate Window Debug.Print ADOXTestLinkedTable(cnn, "Categories") End Function
Strategic Overview
Microsoft Access within an Organization's Database Strategy
How many simultaneous Microsoft Access users?
Blaming Microsoft Access instead of the Developer
Microsoft Access Version Feature Differences
Microsoft Access Versions, Service Packs and Updates
Microsoft Office 365 Access Update Version Releases
Top 14 Features Added with MS Access 2007
Taking Over Legacy MS Access Databases
Winner of Every Best Access Add-in Award
Set AutoNumber Starting Number Other than 1
Avoid Unnecessary or Duplicate Indexes
Copy Command Button and Keep Picture
Module VBA to Forms and Controls
Subform Reference to Control Rather than Field
Suppress Page Headers and Footers on the First Page of Your Report
Annual Monthly Crosstab Columns
Add Buttons to the Quick Access Toolbar
Collapse the Office Ribbon for more space
Avoid Exits in the Body of a Procedure
Send Emails with DoCmd.SendObject
Error Handling and Debugging Techniques
Error Number and Description Reference
Remote Desktop Connection Setup
Terminal Services and RemoteApp Deployment
Missing Package & Deployment Wizard
Remove 'Save to SharePoint Site' Prompt from an Access Database
Class Not Registered Run-time Error -2147221164
Microsoft Access to SQL Server Upsizing Center
When and How to Upsize Access to SQL Server
SQL Server Express Versions and Downloads
Deploying MS Access Linked to SQL Azure
SQL Server Azure Usage and DTU Limits