Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
851 views
in Technique[技术] by (71.8m points)

Creating namespace free Element in xquery

I have created an element as mentioned here XQuery: Create a new element with a given name?.

The code for creating element is below

declare function local:remove-tag-if-empty($elem as element(), $name as xs:string)
{
if(not($elem/node()))
then ()
else
(
element {$name} {$elem/text()}
)
};

Now what I am getting from the generated XML is something like this (I am using the above function to create DOB tag)

<DOB xmlns = "">2012-10-14+03:00</DOB>

I don't want xmlns="" to be the part of the generated xml. Can anyone tell me that how to create element without namespace? Thanks in advance.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

Please log in or register to answer this question.

1 Answer

0 votes
by (71.8m points)

Why do you want to create:

<DOB>2012-10-14+03:00</DOB>

It is functionally the same as below:

<DOB xmlns="">2012-10-14+03:00</DOB>


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to JiKe DevOps Community for programmer and developer-Open, Learning and Share
...