G
GPO
I have an Access 2000 mdb that has numerous action queries
(in the queries pane of the database window). I used to be
able to run these using:
Dim qdf As DAO.QueryDef
..
..
..
qdf.Execute
or
db.exectute "qappExampleAppendQuery"
What do I do in ADO?
I've tried :
Dim cnn As ADODB.Connection
cnn.Execute "qapp_Separations0304"
but no luck. It seems to only want SQL as the command text.
GPO
(in the queries pane of the database window). I used to be
able to run these using:
Dim qdf As DAO.QueryDef
..
..
..
qdf.Execute
or
db.exectute "qappExampleAppendQuery"
What do I do in ADO?
I've tried :
Dim cnn As ADODB.Connection
cnn.Execute "qapp_Separations0304"
but no luck. It seems to only want SQL as the command text.
GPO