DbParameter[] paras = new SqlParameter[] 
            {
                new SqlParameter("@re",re),
                new SqlParameter("@customerId",customerId),
                new SqlParameter("@friendId",friendId),
            };
            String sql = "update Jy_Friend set F_Res=@re where C_ID=@customerId and F_C_ID=@friendId";
            Int32 count = this.jyc.ExecuteCommand(sql, paras);
            return count > 0 ? true : false;急!