Re: help with xpath namespace - Mailing list pgsql-sql

From Filip Rembiałkowski
Subject Re: help with xpath namespace
Date
Msg-id CAP_rwwk6n0HTyxYd396UWustKom3Ku0dDSs7+u-RNr7kqX+6TA@mail.gmail.com
Whole thread Raw
In response to help with xpath namespace  (Brian Sherwood <bdsher@gmail.com>)
Responses Re: help with xpath namespace
List pgsql-sql


2011/9/22 Brian Sherwood <bdsher@gmail.com>

select (xpath('/chassis-inventory/chassis/serial-number/text()',
       data_xml,
       ARRAY[ARRAY['junos',
'http://xml.juniper.net/junos/9.6R4/junos-chassis']]
      )) from xml_test;

Can anyone suggest how I would go about getting the serial-number with xpath?



http://www.postgresql.org/docs/9.1/static/functions-xml.html#FUNCTIONS-XML-PROCESSING - see "mydefns".

This will work:

select xpath(
    '/junos:chassis-inventory/junos:chassis/junos:serial-number/text()',
    data_xml,
    ARRAY[ARRAY['junos', 'http://xml.juniper.net/junos/9.6R4/junos-chassis']]
)
from xml_test;



cheers, Filip


pgsql-sql by date:

Previous
From: Brian Sherwood
Date:
Subject: help with xpath namespace
Next
From: Filip Rembiałkowski
Date:
Subject: Re: a spatial table's bounding box