article.content = rs.getString("content");
article.postDate = rs.getTimestamp("postDate");
article.tags = rs.getString("tags");
article.view = rs.getInt("view");
article.commentCount = rs.getInt("commentCount");
article.author = new User();
article.author.id = rs.getString("User.id");
article.author.name = rs.getString("User.name");
article.author.tags = rs.getString("User.tags");
list.add(article);
}