Difference between revisions of "Command-Line Client"

From BaseX Documentation
Jump to navigation Jump to search
Line 77: Line 77:
  
 
<code>
 
<code>
> [[Commands#CREATE DB|CREATE DB]] store<br/>
+
> [[Commands#CREATE DB|CREATE DB]] store
> [[Commands#ADD|ADD]] factbook.xml<br/>
+
</code><br/>
 +
<code>
 +
> [[Commands#ADD|ADD]] factbook.xml
 +
</code><br/>
 +
<code>
 
> [[Commands#ADD|ADD]] http://files.basex.org/xml/xmark.xml
 
> [[Commands#ADD|ADD]] http://files.basex.org/xml/xmark.xml
 
</code>
 
</code>

Revision as of 13:38, 11 February 2019

This page is part of the Getting Started Section. BaseX offers a standalone mode in which all database commands can be executed from the command line or console. The article on the Database Server provides numerous examples for running commands in the standalone mode. (Note that the standalone mode does not interact with the client/server architecture.)

Startup

First of all, launch a standalone version of BaseX: double click on the BaseX icon or run the basex script. Click on the following links to find more information on starting the standalone mode, the standalone mode's start script or the standalone mode's command-line options.

Create a Database

  • To create a database you need an XML document, e.g. factbook.xml.
  • Save this document to your working directory.
  • Type in the following command to create and open the database:

> CREATE DB factbook factbook.xml

factbook is the name of the database
factbook.xml is the initial input of the database
Where is the database stored?

By default, databases are stored in the basex/data directory, which is located in your home folder. Depending on your Configuration, the location of your home folder varies. For example, on a Mac it's /Users/John, if your name is John.

Execute a Query

The XQUERY command lets you run a query.

  • For example, the following query returns all country nodes in the currently opened factbook database.

> XQUERY //country

  • You can also run queries in files:

> RUN /Users/John/query.xq

Database Commands

  • The following command lists all databases than can be opened by the currently logged in user:

> LIST

  • To open an existing database, execute the following:

> OPEN factbook

  • To get information on the currently opened database, type:

> INFO

  • You can also address a database within your query with the db:open function:

> XQUERY db:open("factbook")//country

  • To close the current database, please type:

> CLOSE

  • Use the DROP DB command to delete a database:

> DROP DB factbook

Multiple Resources

One database can contain not only a single, but millions of documents. All documents can have a different structure.

With the following commands, you can create an empty database and add two documents. It is also possible to address resources via URLs:

> CREATE DB store
> ADD factbook.xml
> ADD http://files.basex.org/xml/xmark.xml

  • Deleting a document from a database is easy:

> DELETE factbook.xml

Make sure that the database, which contains the addressed document, is currently opened.

Backup and Restore

  • To backup your database, type:

> CREATE BACKUP factbook

  • To restore your database, type:

> RESTORE factbook

The backup file is stored in the database directory. It contains the name of the database and a timestamp: [db-name]-[timestamp].zip. If a database is restored, and if several backups exist, the backup with the newest timestamp is taken.