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; } }
internal int GetReturnCode(string commandText) { return(LoggingUtilities.GetReturnCode(CommandCollection, commandText)); }