我有一个名为 article 的数据库表,其中包含三个字段(Id、Title、Text)。我正在使用 servlet。我有一个查询要从表中选择 ID 和标题。我想做的是将标题列表显示为超链接,并将每个标题链接到数据库表中的文本这是我的代码
String SQL_QUERY ="Select article.title , article.articleId from article where article.title like '% "+searchWord+"%'";
Query query = session.createSQLQuery(SQL_QUERY);
List result = query.list();
for(Iterator it=result.iterator();it.hasNext();){
Object[] row = (Object[]) it.next();
String title = ((String) row[0]);
int id = ((Integer) row[1]);
out.println("<a Link to the text> title </a>")
}
请帮忙。谢谢