Exemplo n.º 1
0
 public void CommandStop()
 {
     Interlocked.Decrement(ref _currentCommands);
     NpgsqlSqlEventSource.CommandStop();
 }
Exemplo n.º 2
0
 public void CommandStart(string sql)
 {
     Interlocked.Increment(ref _totalCommands);
     Interlocked.Increment(ref _currentCommands);
     NpgsqlSqlEventSource.CommandStart(sql);
 }