[basex-talk] Create a document in a created database

2020-04-20 Thread Ramzi Hammouda
Hello BaseX team, This may sound simple, but didn't find how to do it, what is the xquery for creating an empty xml document in a chosen database. Thanks. P Respectons ensemble l'environnement. N'imprimez ce message que si n?cessaire. Let's respect the environment together. Only print this

Re: [basex-talk] Create a document in a created database

2020-04-20 Thread Christian GrĂ¼n
Dear Ramzi, As Omar has stated, you can use XQuery to create a database with an initial empty document: db:create('db', , 'doc.xml') A new empty document can be added to an existing database as follows: db:add('db', , 'doc.xml') See more examples in our documentation [1]. You can also use