Example #1
0
        internal int Update(DbTransaction tran, DictionarySQlMaintenanceModel model)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append(" UPDATE ");
            builder.Append(" DictionarySQlMaintenance ");
            builder.Append(" SET ");
            builder.Append(" DictionarySQlMaintenance_ID=@DictionarySQlMaintenance_ID,DictionarySQlMaintenance_Mark=@DictionarySQlMaintenance_Mark,DictionarySQlMaintenance_Name=@DictionarySQlMaintenance_Name,DictionarySQlMaintenance_Explanation=@DictionarySQlMaintenance_Explanation,DictionarySQlMaintenance_SQL=@DictionarySQlMaintenance_SQL,DictionarySQlMaintenance_CretateUser=@DictionarySQlMaintenance_CretateUser,DictionarySQlMaintenance_CreateTime=@DictionarySQlMaintenance_CreateTime,DictionarySQlMaintenance_UpdateUser=@DictionarySQlMaintenance_UpdateUser,DictionarySQlMaintenance_UpdateTime=@DictionarySQlMaintenance_UpdateTime ");
            builder.Append(" WHERE ");
            builder.Append(" DictionarySQlMaintenance_ID=@DictionarySQlMaintenance_ID ");
            return(this.CurrDB.ExecuteNonQuery(builder.ToString(), tran, new object[] { model.DictionarySQlMaintenance_ID, model.DictionarySQlMaintenance_Mark, model.DictionarySQlMaintenance_Name, model.DictionarySQlMaintenance_Explanation, model.DictionarySQlMaintenance_SQL, model.DictionarySQlMaintenance_CretateUser, model.DictionarySQlMaintenance_CreateTime, model.DictionarySQlMaintenance_UpdateUser, model.DictionarySQlMaintenance_UpdateTime }));
        }
Example #2
0
        internal int Add(DbTransaction tran, DictionarySQlMaintenanceModel model)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append(" INSERT INTO ");
            builder.Append(" DictionarySQlMaintenance( ");
            builder.Append(" DictionarySQlMaintenance_ID,DictionarySQlMaintenance_Mark,DictionarySQlMaintenance_Name,DictionarySQlMaintenance_Explanation,DictionarySQlMaintenance_SQL,DictionarySQlMaintenance_CretateUser,DictionarySQlMaintenance_CreateTime,DictionarySQlMaintenance_UpdateUser,DictionarySQlMaintenance_UpdateTime ");
            builder.Append(" ) ");
            builder.Append(" values( ");
            builder.Append(" @DictionarySQlMaintenance_ID,@DictionarySQlMaintenance_Mark,@DictionarySQlMaintenance_Name,@DictionarySQlMaintenance_Explanation,@DictionarySQlMaintenance_SQL,@DictionarySQlMaintenance_CretateUser,@DictionarySQlMaintenance_CreateTime,@DictionarySQlMaintenance_UpdateUser,@DictionarySQlMaintenance_UpdateTime ");
            builder.Append(" ) ");
            return(this.CurrDB.ExecuteNonQuery(builder.ToString(), tran, new object[] { model.DictionarySQlMaintenance_ID, model.DictionarySQlMaintenance_Mark, model.DictionarySQlMaintenance_Name, model.DictionarySQlMaintenance_Explanation, model.DictionarySQlMaintenance_SQL, model.DictionarySQlMaintenance_CretateUser, model.DictionarySQlMaintenance_CreateTime, model.DictionarySQlMaintenance_UpdateUser, model.DictionarySQlMaintenance_UpdateTime }));
        }
 public int Update(DictionarySQlMaintenanceModel model)
 {
     return(this.DAL.Update(model));
 }
 public int Add(DictionarySQlMaintenanceModel model)
 {
     return(this.DAL.Add(model));
 }
Example #5
0
        internal List <DictionarySQlMaintenanceModel> GetDictionarySQlMaintenanceModelListByPage(DbTransaction tran, int pageSize, int pageIndex, string orderColumn, string orderType, string strCondition, params object[] param)
        {
            if ((pageSize <= 0) || (pageIndex <= 0))
            {
                throw new Exception("分页参数错误,必须大于零");
            }
            if (string.IsNullOrEmpty(orderColumn))
            {
                throw new Exception("排序字段必须填写");
            }
            int           num     = ((pageIndex - 1) * pageSize) + 1;
            int           num2    = pageIndex * pageSize;
            StringBuilder builder = new StringBuilder();

            builder.Append(" SELECT * FROM (");
            builder.Append(string.Format(" SELECT (ROW_NUMBER() OVER(ORDER BY {0} {1})) as rownum,* FROM DictionarySQlMaintenance", orderColumn, orderType));
            if (!string.IsNullOrWhiteSpace(strCondition))
            {
                builder.Append(" WHERE ");
                builder.Append(strCondition);
            }
            builder.Append(" ) t ");
            builder.Append(" WHERE rownum between ");
            builder.Append(string.Format(" {0} ", num));
            builder.Append(" AND ");
            builder.Append(string.Format(" {0} ", num2));
            DataSet set = this.CurrDB.ExecuteDataSet(builder.ToString(), tran, param);
            List <DictionarySQlMaintenanceModel> list = new List <DictionarySQlMaintenanceModel>();
            DictionarySQlMaintenanceModel        item = null;

            foreach (DataRow row in set.Tables[0].Rows)
            {
                item = new DictionarySQlMaintenanceModel();
                if (row["DictionarySQlMaintenance_ID"] != null)
                {
                    item.DictionarySQlMaintenance_ID = row["DictionarySQlMaintenance_ID"].ToString();
                }
                if (row["DictionarySQlMaintenance_Mark"] != null)
                {
                    item.DictionarySQlMaintenance_Mark = row["DictionarySQlMaintenance_Mark"].ToString();
                }
                if (row["DictionarySQlMaintenance_Name"] != null)
                {
                    item.DictionarySQlMaintenance_Name = row["DictionarySQlMaintenance_Name"].ToString();
                }
                if (row["DictionarySQlMaintenance_Explanation"] != null)
                {
                    item.DictionarySQlMaintenance_Explanation = row["DictionarySQlMaintenance_Explanation"].ToString();
                }
                if (row["DictionarySQlMaintenance_SQL"] != null)
                {
                    item.DictionarySQlMaintenance_SQL = row["DictionarySQlMaintenance_SQL"].ToString();
                }
                if (row["DictionarySQlMaintenance_CretateUser"] != null)
                {
                    item.DictionarySQlMaintenance_CretateUser = row["DictionarySQlMaintenance_CretateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_CreateTime"] != null)
                {
                    if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_CreateTime"].ToString()))
                    {
                        item.DictionarySQlMaintenance_CreateTime = null;
                    }
                    else
                    {
                        item.DictionarySQlMaintenance_CreateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_CreateTime"].ToString()));
                    }
                }
                if (row["DictionarySQlMaintenance_UpdateUser"] != null)
                {
                    item.DictionarySQlMaintenance_UpdateUser = row["DictionarySQlMaintenance_UpdateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_UpdateTime"] != null)
                {
                    if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_UpdateTime"].ToString()))
                    {
                        item.DictionarySQlMaintenance_UpdateTime = null;
                    }
                    else
                    {
                        item.DictionarySQlMaintenance_UpdateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_UpdateTime"].ToString()));
                    }
                }
                list.Add(item);
            }
            return(list);
        }
Example #6
0
        internal List <DictionarySQlMaintenanceModel> GetDictionarySQlMaintenanceModelList(DbTransaction tran, int recordNum, string orderColumn, string orderType, string strCondition, params object[] param)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append(" SELECT ");
            if (recordNum > 0)
            {
                builder.Append(" TOP " + recordNum);
            }
            builder.Append(" * ");
            builder.Append(" FROM ");
            builder.Append(" DictionarySQlMaintenance ");
            if (!string.IsNullOrEmpty(strCondition))
            {
                builder.Append(" WHERE ");
                builder.Append(strCondition);
            }
            if (!string.IsNullOrEmpty(orderColumn))
            {
                builder.Append(" ORDER BY ");
                builder.Append(orderColumn);
                if (!string.IsNullOrEmpty(orderType))
                {
                    builder.Append(" " + orderType);
                }
            }
            DataSet set = this.CurrDB.ExecuteDataSet(builder.ToString(), tran, param);
            List <DictionarySQlMaintenanceModel> list = new List <DictionarySQlMaintenanceModel>();
            DictionarySQlMaintenanceModel        item = null;

            foreach (DataRow row in set.Tables[0].Rows)
            {
                item = new DictionarySQlMaintenanceModel();
                if (row["DictionarySQlMaintenance_ID"] != null)
                {
                    item.DictionarySQlMaintenance_ID = row["DictionarySQlMaintenance_ID"].ToString();
                }
                if (row["DictionarySQlMaintenance_Mark"] != null)
                {
                    item.DictionarySQlMaintenance_Mark = row["DictionarySQlMaintenance_Mark"].ToString();
                }
                if (row["DictionarySQlMaintenance_Name"] != null)
                {
                    item.DictionarySQlMaintenance_Name = row["DictionarySQlMaintenance_Name"].ToString();
                }
                if (row["DictionarySQlMaintenance_Explanation"] != null)
                {
                    item.DictionarySQlMaintenance_Explanation = row["DictionarySQlMaintenance_Explanation"].ToString();
                }
                if (row["DictionarySQlMaintenance_SQL"] != null)
                {
                    item.DictionarySQlMaintenance_SQL = row["DictionarySQlMaintenance_SQL"].ToString();
                }
                if (row["DictionarySQlMaintenance_CretateUser"] != null)
                {
                    item.DictionarySQlMaintenance_CretateUser = row["DictionarySQlMaintenance_CretateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_CreateTime"] != null)
                {
                    if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_CreateTime"].ToString()))
                    {
                        item.DictionarySQlMaintenance_CreateTime = null;
                    }
                    else
                    {
                        item.DictionarySQlMaintenance_CreateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_CreateTime"].ToString()));
                    }
                }
                if (row["DictionarySQlMaintenance_UpdateUser"] != null)
                {
                    item.DictionarySQlMaintenance_UpdateUser = row["DictionarySQlMaintenance_UpdateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_UpdateTime"] != null)
                {
                    if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_UpdateTime"].ToString()))
                    {
                        item.DictionarySQlMaintenance_UpdateTime = null;
                    }
                    else
                    {
                        item.DictionarySQlMaintenance_UpdateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_UpdateTime"].ToString()));
                    }
                }
                list.Add(item);
            }
            return(list);
        }
Example #7
0
        internal DictionarySQlMaintenanceModel GetDictionarySQlMaintenanceModelByPK(DbTransaction tran, string dictionarysqlmaintenance_id)
        {
            StringBuilder builder = new StringBuilder();

            builder.Append(" SELECT ");
            builder.Append(" TOP 1 * ");
            builder.Append(" FROM ");
            builder.Append(" DictionarySQlMaintenance ");
            builder.Append(" WHERE ");
            builder.Append(" DictionarySQlMaintenance_ID=@DictionarySQlMaintenance_ID ");
            DataSet set = this.CurrDB.ExecuteDataSet(builder.ToString(), tran, new object[] { dictionarysqlmaintenance_id });
            DictionarySQlMaintenanceModel model = null;

            if (set.Tables[0].Rows.Count > 0)
            {
                DataRow row = set.Tables[0].Rows[0];
                model = new DictionarySQlMaintenanceModel();
                if (row["DictionarySQlMaintenance_ID"] != null)
                {
                    model.DictionarySQlMaintenance_ID = row["DictionarySQlMaintenance_ID"].ToString();
                }
                if (row["DictionarySQlMaintenance_Mark"] != null)
                {
                    model.DictionarySQlMaintenance_Mark = row["DictionarySQlMaintenance_Mark"].ToString();
                }
                if (row["DictionarySQlMaintenance_Name"] != null)
                {
                    model.DictionarySQlMaintenance_Name = row["DictionarySQlMaintenance_Name"].ToString();
                }
                if (row["DictionarySQlMaintenance_Explanation"] != null)
                {
                    model.DictionarySQlMaintenance_Explanation = row["DictionarySQlMaintenance_Explanation"].ToString();
                }
                if (row["DictionarySQlMaintenance_SQL"] != null)
                {
                    model.DictionarySQlMaintenance_SQL = row["DictionarySQlMaintenance_SQL"].ToString();
                }
                if (row["DictionarySQlMaintenance_CretateUser"] != null)
                {
                    model.DictionarySQlMaintenance_CretateUser = row["DictionarySQlMaintenance_CretateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_CreateTime"] != null)
                {
                    if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_CreateTime"].ToString()))
                    {
                        model.DictionarySQlMaintenance_CreateTime = null;
                    }
                    else
                    {
                        model.DictionarySQlMaintenance_CreateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_CreateTime"].ToString()));
                    }
                }
                if (row["DictionarySQlMaintenance_UpdateUser"] != null)
                {
                    model.DictionarySQlMaintenance_UpdateUser = row["DictionarySQlMaintenance_UpdateUser"].ToString();
                }
                if (row["DictionarySQlMaintenance_UpdateTime"] == null)
                {
                    return(model);
                }
                if (string.IsNullOrWhiteSpace(row["DictionarySQlMaintenance_UpdateTime"].ToString()))
                {
                    model.DictionarySQlMaintenance_UpdateTime = null;
                    return(model);
                }
                model.DictionarySQlMaintenance_UpdateTime = new DateTime?(DateTime.Parse(row["DictionarySQlMaintenance_UpdateTime"].ToString()));
            }
            return(model);
        }