Example #1
0
        public int Update(Model.AddReplayModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update Wx_MessageAuto set ");
            strSql.Append("Contents='" + model.Contents + "',Types='" + model.Types + "',Pic='" + model.Pic + "' where Id=" + model.Id);


            return(SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql.ToString()));
        }
Example #2
0
        public Model.AddReplayModel GetModel(int Id)
        {
            string sql = "select * from Wx_MessageAuto where id =" + Id;

            Model.AddReplayModel model = new Model.AddReplayModel();
            SqlDataReader        dr    = SqlHelper.ExecuteReader(conn, CommandType.Text, sql.ToString());

            if (dr.Read())
            {
                model.Id       = Id;
                model.Contents = dr["Contents"].ToString();
                model.Types    = dr["Types"].ToString();
                model.Pic      = dr["Pic"].ToString();
            }
            return(model);
        }
Example #3
0
        public int Add(Model.AddReplayModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into  Wx_MessageAuto(");
            strSql.Append("Contents,Types,Pic)");
            strSql.Append(" values (");
            strSql.Append("@Contents,@Types,@Pic,)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Contents", model.Contents),
                new SqlParameter("@Types",    model.Types),
                new SqlParameter("@Pic",      model.Pic)
            };

            return(SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql.ToString(), parameters));
        }
Example #4
0
        public int Update(Model.AddReplayModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update Wx_AddReplay set ");
            strSql.Append("Contents=@Contents,Types=@Types,Pic=@Pic,Mid=@Mid,Sid=@Sid where Id=@Id");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@Contents", model.Contents),
                new SqlParameter("@Types",    model.Types),
                new SqlParameter("@Pic",      model.Pic),
                new SqlParameter("@Mid",      model.Mid),
                new SqlParameter("@Sid",      model.Sid),
                new SqlParameter("@Id",       model.Id)
            };

            return(SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql.ToString(), parameters));
        }