Example #1
0
 internal static int GetReturnCode(IDbCommand[] commandCollection, string commandText)
 {
     try
     {
         return(LoggingUtilities.GetReturnCode(commandCollection, commandText));
     }
     catch (LoggingUtilitiesCommandNotFoundException e)
     {
         Info("Logging error: " + e.Message);
         return(8);
     }
     catch (Exception)
     {
         throw;
     }
 }
Example #2
0
 internal int GetReturnCode(string commandText)
 {
     return(LoggingUtilities.GetReturnCode(CommandCollection, commandText));
 }