Database: Get affected records count after DELELE / UPDATE

Database: Get affected records count after DELELE / UPDATE

BY 27 Aug 2013 Native Application Development

Hello !

I am working with database just as described in documentation:

    ...
    sql = L"UPDATE myTable1 SET column2 = 'Converted Data' WHERE column2 = 'Initial Data'";
    pDatabase->ExecuteSql(sql, true);
    ...

QUESTION:  How can I obtain a number of affected records after DELETE / UPDATE ?

Doc is silent about this… 🙁

Written by