简体   繁体   中英

How to declare a function in Xbase

Hi this is probably an odd question but i would like to know how i can declare a function in Xbase.

I was told this is how:

declare function prefix:name($parameter as DataType)
as returnDataType {
..code..
};

I did this:

declare function local:test($i as xs:integer?)
as xs:integer
{
return $i
};

But it keep saying that i have a syntax problem

Expecting expression.

I found the answer to this question, the problem is that when you declare a function in Xbase you have to call it after the declaration like this:

//declare your function
<test>{local:test("Example")}</test>

Otherwise, it will consider it as a syntax problem.

Your function should be

declare function local:test($i as xs:integer?)
as xs:integer
{
   $i
};

In XQuery the return keyword is used only in a FLWOR expression.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM