示例#1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(ROYcms.Community.Model.ROYcms_Community_result model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update ROYcms_Community_result set ");
            strSql.Append("Community_id=@Community_id,");
            strSql.Append("title=@title,");
            strSql.Append("content=@content,");
            strSql.Append("user_id=@user_id,");
            strSql.Append("ip=@ip,");
            strSql.Append("Time=@Time");
            strSql.Append(" where bh=@bh ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@bh",           SqlDbType.Int,       4),
                new SqlParameter("@Community_id", SqlDbType.Int,       4),
                new SqlParameter("@title",        SqlDbType.NVarChar, 50),
                new SqlParameter("@content",      SqlDbType.Text),
                new SqlParameter("@user_id",      SqlDbType.NVarChar, 50),
                new SqlParameter("@ip",           SqlDbType.NVarChar, 50),
                new SqlParameter("@Time",         SqlDbType.DateTime)
            };
            parameters[0].Value = model.bh;
            parameters[1].Value = model.Community_id;
            parameters[2].Value = model.title;
            parameters[3].Value = model.content;
            parameters[4].Value = model.user_id;
            parameters[5].Value = model.ip;
            parameters[6].Value = model.Time;

            DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
        }
示例#2
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public ROYcms.Community.Model.ROYcms_Community_result GetModel(int bh)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 bh,Community_id,title,content,user_id,ip,Time from ROYcms_Community_result ");
            strSql.Append(" where bh=@bh ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@bh", SqlDbType.Int, 4)
            };
            parameters[0].Value = bh;

            ROYcms.Community.Model.ROYcms_Community_result model = new ROYcms.Community.Model.ROYcms_Community_result();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                if (ds.Tables[0].Rows[0]["bh"].ToString() != "")
                {
                    model.bh = int.Parse(ds.Tables[0].Rows[0]["bh"].ToString());
                }
                if (ds.Tables[0].Rows[0]["Community_id"].ToString() != "")
                {
                    model.Community_id = int.Parse(ds.Tables[0].Rows[0]["Community_id"].ToString());
                }
                model.title   = ds.Tables[0].Rows[0]["title"].ToString();
                model.content = ds.Tables[0].Rows[0]["content"].ToString();
                model.user_id = ds.Tables[0].Rows[0]["user_id"].ToString();
                model.ip      = ds.Tables[0].Rows[0]["ip"].ToString();
                if (ds.Tables[0].Rows[0]["Time"].ToString() != "")
                {
                    model.Time = DateTime.Parse(ds.Tables[0].Rows[0]["Time"].ToString());
                }
                return(model);
            }
            else
            {
                return(null);
            }
        }
示例#3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(ROYcms.Community.Model.ROYcms_Community_result model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into ROYcms_Community_result(");
            strSql.Append("Community_id,title,content,user_id,ip,Time)");
            strSql.Append(" values (");
            strSql.Append("@Community_id,@title,@content,@user_id,@ip,@Time)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Community_id", SqlDbType.Int,       4),
                new SqlParameter("@title",        SqlDbType.NVarChar, 50),
                new SqlParameter("@content",      SqlDbType.Text),
                new SqlParameter("@user_id",      SqlDbType.NVarChar, 50),
                new SqlParameter("@ip",           SqlDbType.NVarChar, 50),
                new SqlParameter("@Time",         SqlDbType.DateTime)
            };
            parameters[0].Value = model.Community_id;
            parameters[1].Value = model.title;
            parameters[2].Value = model.content;
            parameters[3].Value = model.user_id;
            parameters[4].Value = model.ip;
            parameters[5].Value = model.Time;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }