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