Esempio n. 1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public bool Update(HTNResp.Model.ProjectDictionary model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update ProjectDictionary set ");
            if (model.ProjectName != null)
            {
                strSql.Append("ProjectName='" + model.ProjectName + "',");
            }
            else
            {
                strSql.Append("ProjectName= null ,");
            }
            if (model.ProjectCode != null)
            {
                strSql.Append("ProjectCode='" + model.ProjectCode + "',");
            }
            else
            {
                strSql.Append("ProjectCode= null ,");
            }
            if (model.ProjectType != null)
            {
                strSql.Append("ProjectType='" + model.ProjectType + "',");
            }
            else
            {
                strSql.Append("ProjectType= null ,");
            }
            int n = strSql.ToString().LastIndexOf(",");

            strSql.Remove(n, 1);
            strSql.Append(" where ID=" + model.ID + "");
            int rowsAffected = DbHelperSQL.ExecuteSql(strSql.ToString());

            if (rowsAffected > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 2
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public HTNResp.Model.ProjectDictionary GetModel(int ID)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1  ");
            strSql.Append(" ID,ProjectName,ProjectCode,ProjectType ");
            strSql.Append(" from ProjectDictionary ");
            strSql.Append(" where ID=" + ID + "");
            HTNResp.Model.ProjectDictionary model = new HTNResp.Model.ProjectDictionary();
            DataSet ds = DbHelperSQL.Query(strSql.ToString());

            if (ds.Tables[0].Rows.Count > 0)
            {
                return(DataRowToModel(ds.Tables[0].Rows[0]));
            }
            else
            {
                return(null);
            }
        }
Esempio n. 3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(HTNResp.Model.ProjectDictionary model)
        {
            StringBuilder strSql  = new StringBuilder();
            StringBuilder strSql1 = new StringBuilder();
            StringBuilder strSql2 = new StringBuilder();

            if (model.ProjectName != null)
            {
                strSql1.Append("ProjectName,");
                strSql2.Append("'" + model.ProjectName + "',");
            }
            if (model.ProjectCode != null)
            {
                strSql1.Append("ProjectCode,");
                strSql2.Append("'" + model.ProjectCode + "',");
            }
            if (model.ProjectType != null)
            {
                strSql1.Append("ProjectType,");
                strSql2.Append("'" + model.ProjectType + "',");
            }
            strSql.Append("insert into ProjectDictionary(");
            strSql.Append(strSql1.ToString().Remove(strSql1.Length - 1));
            strSql.Append(")");
            strSql.Append(" values (");
            strSql.Append(strSql2.ToString().Remove(strSql2.Length - 1));
            strSql.Append(")");
            strSql.Append(";select @@IDENTITY");
            object obj = DbHelperSQL.GetSingle(strSql.ToString());

            if (obj == null)
            {
                return(0);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }
Esempio n. 4
0
 /// <summary>
 /// 得到一个对象实体
 /// </summary>
 public HTNResp.Model.ProjectDictionary DataRowToModel(DataRow row)
 {
     HTNResp.Model.ProjectDictionary model = new HTNResp.Model.ProjectDictionary();
     if (row != null)
     {
         if (row["ID"] != null && row["ID"].ToString() != "")
         {
             model.ID = int.Parse(row["ID"].ToString());
         }
         if (row["ProjectName"] != null)
         {
             model.ProjectName = row["ProjectName"].ToString();
         }
         if (row["ProjectCode"] != null)
         {
             model.ProjectCode = row["ProjectCode"].ToString();
         }
         if (row["ProjectType"] != null)
         {
             model.ProjectType = row["ProjectType"].ToString();
         }
     }
     return(model);
 }