Re: [basex-talk] Update operations on JSON objects are not working

2017-11-13 Thread E. Wray Johnson
Thanks. I figured out what I was doing wrong. On Mon, Nov 13, 2017 at 5:36 PM Christian Grün wrote: > The update keyword is a so-called “non-updating expression”; the > result will not have any effect on the database. You can use the > simple map operator… > >

Re: [basex-talk] Update operations on JSON objects are not working

2017-11-13 Thread Christian Grün
The update keyword is a so-called “non-updating expression”; the result will not have any effect on the database. You can use the simple map operator… db:open('db','country')/json[countryId = 1] ! ( replace value of node countryName with 'Aldorria', insert node 1000 into . ) …or FLWOR