I have building quieries in code such as:
But, now I would like to create a pass-through query. I am doing this because I need to link a pass-through table on a server to a backend table in order to do an update/set.
Does anyone know how I might do this?
Thank you,
Code:
Dim strMySql
strMySql = "Select blah, blah from whereever;"
DoCmd.RunSQL strMySql
But, now I would like to create a pass-through query. I am doing this because I need to link a pass-through table on a server to a backend table in order to do an update/set.
Does anyone know how I might do this?
Thank you,