Logger icon indicating copy to clipboard operation
Logger copied to clipboard

Logging Rowcount

Open martindsouza opened this issue 4 years ago • 0 comments

Have an API call so that we can log rowcount in an easier method. Should look like:

logger.log_rowcount(p_str, p_scope ...) Internally it would:

begin
  logger.log(p_string || ': ' || sql%rowcount', l_scope) ...
end;

Things to think of:

  • sql%rowcount will be changed for any calls after
  • Enhance for bulk inserts etc...

martindsouza avatar Jul 07 '21 13:07 martindsouza