public PaymentToSupplierApplyListDAL()
 {
     try
     {
         GlobalConfigurations objConfig = new GlobalConfigurations();
         objConfig.InitilizeConnectionString();
         connectionString = objConfig.connectionString;
         commandTimeout   = Convert.ToInt32(objConfig.commandTimeout);
     }
     catch (Exception exp)
     {
         logExcpUIobj.MethodName       = "PaymentToSupplierApplyListDAL()";
         logExcpUIobj.ResourceName     = "PaymentToSupplierApplyListDAL.CS";
         logExcpUIobj.RecordId         = "";
         logExcpUIobj.ExceptionDetails = "Error Occured. System Generated Error is: " + exp.ToString();
         logExcpDALobj.SaveExceptionToDB(logExcpUIobj);
         throw new Exception("[PaymentToSupplierApplyListDAL : PaymentToSupplierApplyListDAL] ERROR: An error occured while connection to staging database. Please check the connection settings : [" + exp.ToString() + "]");
     }
 }
예제 #2
0
    public static void SaveExceptionToDB(string methodName, string resourceName, string recordId, string exceptionDetails)
    {
        SqlConnection sqlCon = null;
        SqlCommand    sqlCmd = null;

        try
        {
            GlobalConfigurations objConfig = new GlobalConfigurations();
            objConfig.InitilizeConnectionString();

            objConfig.InitilizeConnectionString();
            string connectionString = objConfig.connectionString;
            int    commandTimeout   = Convert.ToInt32(objConfig.commandTimeout);

            sqlCon = new SqlConnection(connectionString);

            sqlCon.Open();
            sqlCmd = new SqlCommand("SP_LogException", sqlCon);

            sqlCmd.Parameters.Add("@MethodName", SqlDbType.NVarChar);
            sqlCmd.Parameters["@MethodName"].Value = methodName;

            sqlCmd.Parameters.Add("@ResourceName", SqlDbType.NVarChar);
            sqlCmd.Parameters["@ResourceName"].Value = resourceName;

            sqlCmd.Parameters.Add("@RecordId", SqlDbType.NVarChar);
            sqlCmd.Parameters["@RecordId"].Value = recordId;

            sqlCmd.Parameters.Add("@ExceptionDetails", SqlDbType.NText);
            sqlCmd.Parameters["@ExceptionDetails"].Value = exceptionDetails;

            sqlCmd.CommandType    = CommandType.StoredProcedure;
            sqlCmd.CommandTimeout = commandTimeout;

            sqlCmd.ExecuteNonQuery();

            sqlCon.Close();
            sqlCon.Dispose();
        }
        catch (Exception exp)
        {
        }
        finally
        {
            //Since these variables are in local scope it'll be auto dispose once thread exits the mehtod.
            //However good to add it explicitly.
            try
            {
                if (sqlCmd != null)
                {
                    sqlCmd.Dispose();
                }
            }
            catch { }
            try
            {
                if (sqlCon != null)
                {
                    sqlCon.Close();
                    sqlCon.Dispose();
                }
            }
            catch { }
        }
    }