コード例 #1
0
        string returnModelMsg(MsgDetails modelMsg, int count)
        {
            switch (count)
            {
            case 1:
                return(modelMsg.MsgFirst);

            case 2:
                return(modelMsg.MsgSecond);

            case 3:
                return(modelMsg.MsgThird);

            case 4:
                return(modelMsg.MsgFour);
            }
            return("");
        }
コード例 #2
0
        public List <MsgDetails> FetchNewData()
        {
            DataTable         dt      = new DataTable();
            List <MsgDetails> msgList = new List <MsgDetails>();

            using (SqlConnection conData = new SqlConnection(DataConfig.Connection))
            {
                if (conData.State == ConnectionState.Closed)
                {
                    conData.Open();
                }
                SqlDataAdapter da = new SqlDataAdapter("Get_ContentsMsgDetails", conData);
                da.SelectCommand.CommandType = CommandType.StoredProcedure;
                da.Fill(dt);
                msgList = dt.AsEnumerable().Select(row => new MsgDetails
                {
                    MsgID    = row.Field <long?>(0).GetValueOrDefault(),
                    MsgFirst = String.IsNullOrEmpty(row.Field <string>(1))
                        ? ""
                        : row.Field <string>(1),
                    MsgSecond = String.IsNullOrEmpty(row.Field <string>(2))
                        ? ""
                        : row.Field <string>(2),
                    MsgThird = String.IsNullOrEmpty(row.Field <string>(3))
                        ? ""
                        : row.Field <string>(3),
                    MsgFour = String.IsNullOrEmpty(row.Field <string>(4))
                        ? ""
                        : row.Field <string>(4),
                    RetryCount = row.Field <long>(6),
                    MsgEnumId  = row.Field <long>(5),
                    IssueDate  = row.Field <DateTime>(7)
                }).ToList();
                long id = CheckAndUpdteRetry(msgList);
                if (id != 0)
                {
                    MsgDetails mdl = msgList.Where(x => x.MsgID == id).FirstOrDefault();
                    msgList.Remove(mdl);
                }
            }

            return(msgList);
        }
コード例 #3
0
        private long RefetchData(long modelID, long retryCount)
        {
            bool success = false;
            long modelId = 0;

            using (SqlConnection conData = new SqlConnection(DataConfig.Connection))
            {
                MsgDetails model = new MsgDetails();
                if (conData.State == ConnectionState.Closed)
                {
                    conData.Open();
                }
                DataTable dt = new DataTable();
                do
                {
                    SqlDataAdapter da = new SqlDataAdapter("Get_ModelIDMsgMaster", conData);
                    da.SelectCommand.CommandType = CommandType.StoredProcedure;
                    da.SelectCommand.Parameters.AddWithValue("@ID", modelID);
                    da.Fill(dt);
                    if (dt.Rows.Count > 0)
                    {
                        model.MsgFirst  = dt.Rows[0]["MsgFirst"].ToString();
                        model.MsgSecond = dt.Rows[0]["MsgSecond"].ToString();
                        model.MsgThird  = dt.Rows[0]["MsgThird"].ToString();
                        model.MsgFour   = dt.Rows[0]["MsgFour"].ToString();
                        model.MsgID     = Convert.ToInt64(dt.Rows[0]["MsgID"]);
                    }

                    if (model.MsgFirst == "" || model.MsgSecond == "" || model.MsgThird == "" || model.MsgFour == "")
                    {
                        retryCount++;
                        success = updateRetryModel(model, retryCount);
                        if (retryCount > 2)
                        {
                            modelId = model.MsgID;
                        }
                    }
                } while (retryCount <= 2);
            }

            return(modelId);
        }
コード例 #4
0
        public bool InsertToChild(MsgDetails model, int Mastertblid)
        {
            using (SqlConnection conData = new SqlConnection(DataConfig.Connection))
            {
                if (conData.State == ConnectionState.Closed)
                {
                    conData.Open();
                }

                for (int i = 1; i <= 4; i++)
                {
                    SqlCommand daChild = new SqlCommand("Ins_ChildMsgTbl", conData);
                    daChild.CommandType = CommandType.StoredProcedure;
                    daChild.Parameters.AddWithValue("@MapId", Mastertblid);
                    daChild.Parameters.AddWithValue("@Content", returnModelMsg(model, i));
                    daChild.ExecuteNonQuery();
                }
                return(true);
            }
        }
コード例 #5
0
        private bool updateRetryModel(MsgDetails model, long retryCount)
        {
            bool success = false;

            using (SqlConnection conData = new SqlConnection(DataConfig.Connection))
            {
                if (conData.State == ConnectionState.Closed)
                {
                    conData.Open();
                }
                SqlCommand cm = new SqlCommand("Upd_MsgMasterRetry", conData);
                cm.CommandType = CommandType.StoredProcedure;
                cm.Parameters.AddWithValue("@modelId", model.MsgID);
                cm.Parameters.AddWithValue("@retrycount", retryCount);
                int enumId = retryCount <= 2 ? (int)DataStatus.Pending:(int)DataStatus.Failed;
                cm.Parameters.AddWithValue("@enumid", enumId);
                int ret = cm.ExecuteNonQuery();
                if (ret != 0)
                {
                    success = true;
                }
            }
            return(success);
        }