Я хочу подсчитать количество вставленных записей в таблицу, используя счетчик или любой другой метод, и распечатать количество вставленных записей в каждом запуске задания, используя сценарий python. Пример кода приведен ниже. Пожалуйста, предложите несколько решений для того же.
with Postgresql.Database(connection_pool) as db:
--count number of rows inserted in bazaarvoicereviews table and print the count for every job run
db.insert('externaldb.bazaarvoicereviews',data=rdata)
--count number of rows inserted in bazaarvoicereviewsresponses table and print the count for every job run
for rs in _ClientResponses:
db.insert('externaldb.bazaarvoicereviewsresponses',data=rs)
--count number of rows inserted in bazaarvoicereviewscomments table and print the count for every job run
for rc in _ClientComments:
db.insert('externaldb.bazaarvoicereviewscomments',data=rc)