I am upgrading and optimising an application. I am wondering if I am running queries the best way.
Currently I am using
Might I be better using a db.execute method instead to speed things up?
Any thoughts most appreciated. Thanks
Currently I am using
Code:
DoCmd.SetWarnings False
strQryDef = "qupdSsnScrOp"
DoCmd.OpenQuery strQryDef, acViewNormal, acEdit
DoCmd.SetWarnings True
Any thoughts most appreciated. Thanks