示例#1
0
        public void SavePost(PostComment aPost)
        {
            string        connectionStrings = @"Server=RANA-PC\SQLEXPRESS;Database=UniversityDB;Integrated security=True";
            SqlConnection aConnection       = new SqlConnection(connectionStrings);

            aConnection.Open();
            SqlCommand aCommand = new SqlCommand("Insert INTO Table_Comment values('" + aPost.PostDate + "','" + aPost.Message + "','" + aPost.PostId + "')", aConnection);

            aCommand.ExecuteNonQuery();
            aConnection.Close();
        }
示例#2
0
        public List <PostComment> GetAllPost(Post post)
        {
            List <PostComment> Posts = new List <PostComment>();

            string        connectionStrings = @"Server=RANA-PC\SQLEXPRESS;Database=UniversityDB;Integrated security=True";
            SqlConnection aConnection       = new SqlConnection(connectionStrings);

            aConnection.Open();
            SqlCommand    aCommand = new SqlCommand("SELECT*FROM Table_Comment WHERE PostId=" + post.PostId, aConnection);
            SqlDataReader reader   = aCommand.ExecuteReader();

            while (reader.Read())
            {
                PostComment aPost = new PostComment();
                aPost.PostDate = Convert.ToDateTime(reader[0]);
                aPost.Message  = reader[1].ToString();
                Posts.Add(aPost);
            }


            aConnection.Close();

            return(Posts);
        }