不能使用pgxml_xpath

时间:2012-07-02 13:48:28

标签: sql postgresql

我正在使用PostgreSQL 9.1,我认为它应该支持这种XML集成,但我无法让它工作。我尝试这个查询:

select data from ddm_table_data order by pgxml_xpath(data, '//xmltest/col1/text()', '', '');

它出现了以下错误:

ERROR: function pgxml_xpath(xml, unknown, unknown, unknown) does not exist
SQL state: 42883
Hint: No function matches the given name and argument types. You might need to add explicit type casts.

我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

  

我错过了什么吗?

就像错误说的那样 - 没有这样的功能。但是有一个叫做“xpath”。

The manuals are your friend