docmd.runSQL Vs DB.execute

  • Thread starter Thread starter Guest
  • Start date Start date
Generally, DAO executes faster than just about anything else. Of course,
depending on what's being returned from your code, you might not notice a big
difference.

Larry Kraus MCP
 
db.Execute may be marginally faster but I doubt it is an observable
difference.

The *major* difference is that Execute returns trappable JET error if you
want to use error-trapping.
 
Back
Top