Create a document in a created database
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 message if necessary.
That may not answer your question but I create DBs using a dummy xml und replace the whole (and only) file later: db:create("`{$new-db-name}`", document {<_ xmlns=""></_>}, "`{$new-db-name}`.xml", $index-options) Am 20.04.2020 um 12:55 schrieb 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 message if necessary./
Dear Ramzi, As Omar has stated, you can use XQuery to create a database with an initial empty document: db:create('db', <xml/>, 'doc.xml') A new empty document can be added to an existing database as follows: db:add('db', <xml/>, 'doc.xml') See more examples in our documentation [1]. You can also use BaseX commands to create, add or replace documents [2]. Best, Christian [1] https://docs.basex.org/wiki/Database_Module [2] https://docs.basex.org/wiki/Commands On Mon, Apr 20, 2020 at 12:56 PM Ramzi Hammouda <Ramzi.Hammouda@se.linedata.com> wrote:
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 message if necessary.
participants (3)
-
Christian Grün -
Omar Siam -
Ramzi Hammouda