function - Text nodes in XQuery -
creating text node in xquery done so
text { 'foo' }
can explain syntax here? function being invoked? if so, expect see text('foo')
.
that's computed constructor; xquery syntax creating nodes. same syntax works creating (for example) elements , attributes:
element hello { attribute target { "world" } }
see the xquery spec full details.
Comments
Post a Comment