Below is an example code which you can trigger from excel.. add it to workbook_open even in excel and it should import the query execution result from database
Sub GetData()
Dim cnn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim sQRY As String
Dim strFilePath As String
strFilePath = "\HealthyImmunity Contact Manager - V1.53.adp"
Set cnn = New ADODB.Connection
Set rs = New ADODB.Recordset
Sheet1.Range("DataRange").ClearContents
cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & strFilePath & ";"
sQRY = "SELECT tblData.* FROM tblData"
rs.CursorLocation = adUseClient
rs.Open sQRY, cnn, adOpenStatic, adLockReadOnly
Application.ScreenUpdating = False
Sheet1.Range("B2").CopyFromRecordset rs
rs.Close
Set rs = Nothing
cnn.Close
Set cnn = Nothing
Exit Sub
End Sub