Re: [basex-talk] admin:write-log in updating query

2019-07-04 Thread Christian Grün
A new snapshot is available [1]. BaseX 9.2.3 will be released this or next week. Cheers, Christian [1] http://files.basex.org/releases/latest/ On Thu, Jul 4, 2019 at 4:51 PM Christian Grün wrote: > > Hi Markus, > > The reason is that the XQuery Update Facility was finalized before > try/catch

[basex-talk] x509

2019-07-04 Thread Ветошкин Владимир
Hi! Does basex have functions to generate or get information from x509certificate?(like xdmp:x509-certificate-* in MarkLogic) -- С уважением,Ветошкин Владимир Владимирович 

Re: [basex-talk] admin:write-log in updating query

2019-07-04 Thread Christian Grün
Hi Markus, The reason is that the XQuery Update Facility was finalized before try/catch was introduced with XQuery 3 (this is why the specification provides no rules for handling this case). We’ll look at this soon, though [1]. Thanks for the hint, Christian [1] https://github.com/BaseXdb/basex/

[basex-talk] admin:write-log in updating query

2019-07-04 Thread Markus Wittenberg
 Hi BaseX team, I wonder why I can't use admin:write-log as output of an updating function Using ...   return if(file:is-file($path))     then (   try {     file:delete($path)   } catch * {     admin:write-log('Could not delete image file ' || $path)  (: works with update:outp