我正在尝试显示以下输出:
select * from table_to_xml('"person_data1"',false,true,'');
在 JSP 页面中。我在终端和 pgadmin3 中都得到了输出。
我创建了一个 Java 函数来执行上述查询,该函数会将结果集返回到 JSP 页面。
ResultSet rs1=common2.tabletoxml("person_data1");
while (rs1.next())
{
out.print(rs1.getString(1));// when i tried this i got all data but not in xml form so I tried this
out.print(rs1.getSQLXML(1));//got object name
}
我应该怎么做才能在 JSP 页面中获取 XML 值?我试过valueOf()
了,但没有奏效。