Is there a way to test if a query exists before trying to execute it. I got the following which works, as long as the query is available (of course) But how can I test if it is available and execute it when it is?
Dim dbCustSpex_ADO As New ADODB.Connection
dbCustSpex_ADO.ConnectionString = CommonAccessMethods.GetConnectionString(PATH_CUSTSPEX)
dbCustSpex_ADO.Open()
dbCustSpex_ADO.Execute("test_upt")