Forum Discussion

GAutomation's avatar
GAutomation
Frequent Contributor
5 years ago
Solved

How to return the rows updated when running Updae statement in test complete VB script

When i execute the below function the update statement runs succesfully but it is not throwing how many rows was affected.   Function Sq_QryUdate(field,value ) 'Qry1.ConnectionString = "Provide...
  • TanyaYatskovska's avatar
    TanyaYatskovska
    5 years ago

    Hi GAutomation,

     

    According to the MSDN pageRecordsAffected should return the number of affected records.

    So, you can try posting its value to the test log:

    Log.Message(RecordsAffected)

     

    If this doesn't help, please post here your SQL query.