Need count of updates after UPDATE query

  • Thread starter Thread starter mscertified
  • Start date Start date
M

mscertified

Is there any way to get the count of updates after running this?

strSQL = "UPDATE ..."
currentproject.connection.execute strSQL
 
Is there any way to get the count of updates after running this?

strSQL = "UPDATE ..."
currentproject.connection.execute strSQL

Look up the RecordAffected property in VBA help.
 
Back
Top