예제 #1
0
        public static bool addMessage(int userId, int itemId, string messageType)
        {
            SqlConnection con = SQLCon.getConnection();
            SqlCommand    q   = con.CreateCommand();

            q.CommandType = CommandType.Text;
            q.CommandText = "INSERT INTO [Message](user_id,item_id,message_type,added_time) VALUES('" + userId + "','" + itemId + "','" + messageType + "','" + DateTime.Now.ToString() + "');";
            if (q.ExecuteNonQuery() > 0)
            {
                return(true);
            }

            return(false);
        }
예제 #2
0
        // GET: Home
        public ActionResult Index()
        {
            SqlConnection con = SQLCon.getConnection();
            SqlCommand    q   = con.CreateCommand();

            /* categories */
            q.CommandType = CommandType.Text;
            q.CommandText = "SELECT * FROM [Category]";
            SqlDataReader   result     = q.ExecuteReader();
            List <Category> categories = new List <Category>();

            while (result.Read())
            {
                categories.Add(new Category
                {
                    id         = Int32.Parse(result["id"].ToString()),
                    name       = result["name"].ToString(),
                    item_count = Int32.Parse(result["item_count"].ToString())
                });
            }
            ViewBag.categories = categories;
            result.Close();
            /* latest items */

            q.CommandType = CommandType.Text;
            q.CommandText = "SELECT TOP 6 [Category].name AS category_name, [Category].item_count AS category_item_count,[Item].* FROM [Item] LEFT JOIN [Category] ON [Item].category_id=[Category].id WHERE [Item].sold=0 ORDER BY [Item].id DESC";
            result        = q.ExecuteReader();
            List <Item> items = new List <Item>();

            while (result.Read())
            {
                items.Add(new Item
                {
                    id       = Int32.Parse(result["id"].ToString()),
                    category = new Category {
                        id         = Int32.Parse(result["category_id"].ToString()),
                        item_count = Int32.Parse(result["category_item_count"].ToString()),
                        name       = result["category_name"].ToString()
                    },
                    userId      = Int32.Parse(result["user_id"].ToString()),
                    price       = Double.Parse(result["price"].ToString()),
                    name        = result["name"].ToString(),
                    imageFile   = result["imagefile"].ToString(),
                    description = result["description"].ToString()
                });
            }
            ViewBag.items = items;

            return(View());
        }