Difference between revisions of "Command-Line Client"

From BaseX Documentation
Jump to navigation Jump to search
m (Text replacement - "[http://files.basex.org/" to "[https://files.basex.org/")
(18 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
This page is part of the [[Getting Started]] Section.
 
This page is part of the [[Getting Started]] Section.
BaseX offers a standalone console mode from which all [[Commands|database commands]] can be executed.
+
It introduces you to the standalone command-line mode of BaseX.
The article on the [[Database Server]] provides numerous examples for running commands in the console mode
 
(note that the GUI does ''not'' interact with the client/server architecture).
 
  
 
=Startup=
 
=Startup=
  
First of all, please launch a '''standalone''' version of BaseX: double click on the '''BaseX''' icon, or run the <code>basex</code> script. [[Startup#Standalone|Follow this link]] for more information (or check out the additional [[Command-Line Options#Standalone|command-line options]]).
+
The command-line client can be started as follows:
  
=Create a database=
+
* Run one of the {{Code|basex}} or {{Code|basex.bat}} scripts.
 +
* If you have installed BaseX on ''Windows'', click on the '''BaseX Standalone''' icon.
  
* To create a database you need an XML document, e.g. [http://files.basex.org/xml/factbook.xml factbook.xml].
+
Various [[Command-Line_Options#Standalone|command-line options]] are available to simplify batch processing. The [[Start_Scripts|start script]] can be adjusted for individual purposes (e.g. if the default memory limit is too restrictive).
 +
 
 +
Please note that the standalone client must not be used if you perform parallel (concurrent) read and write operations on your databases. See [[Startup#Concurrent Operations|Concurrent Operations]] for more details.
 +
 
 +
=Operations=
 +
 
 +
==Create a Database==
 +
 
 +
* To create a database you need an XML document, e.g. [https://files.basex.org/xml/factbook.xml factbook.xml].
 
* Save this document to your working directory.
 
* Save this document to your working directory.
 
* Type in the following command to create and open the database:
 
* Type in the following command to create and open the database:
Line 22: Line 29:
 
; Where is the database stored?
 
; Where is the database stored?
  
By default, databases are stored in the <code>BaseXData</code> directory, which is located in your home folder.
+
By default, databases are stored in the <code>basex/data</code> 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 <code>/Users/John</code>, if your name is John. If you are working with the ZIP or EXE distribution, the directory will be named <code>data</code> and reside in the application directory.
+
Depending on your [[Configuration]], the location of your home folder varies. For example, on a Mac it's <code>/Users/John</code>, if your name is John.
  
=Execute a query=
+
==Execute a Query==
  
 
The [[Commands#XQUERY|XQUERY]] command lets you run a query.
 
The [[Commands#XQUERY|XQUERY]] command lets you run a query.
* For example, this query returns all country nodes in the currently opened database.
+
* For example, the following query returns all country nodes in the currently opened factbook database.
 
<code>
 
<code>
 
> [[Commands#XQUERY|XQUERY]] //country
 
> [[Commands#XQUERY|XQUERY]] //country
Line 38: Line 45:
 
</code>
 
</code>
  
=Database commands=
+
==Database Commands==
  
 
* The following command lists all databases than can be opened by the currently logged in user:
 
* The following command lists all databases than can be opened by the currently logged in user:
Line 70: Line 77:
 
</code>
 
</code>
  
=Multiple Resources=
+
==Multiple Resources==
  
 
One database can contain not only a single, but millions of documents. All documents can have a different structure.
 
One database can contain not only a single, but millions of documents. All documents can have a different structure.
Line 77: Line 84:
  
 
<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>
  
* Deleting a document from a database is easy:
+
* Deleting a document from a database is easy, but make sure that the database, which contains the addressed document, is currently opened:
 
<code>
 
<code>
 
> [[Commands#DELETE|DELETE]] factbook.xml
 
> [[Commands#DELETE|DELETE]] factbook.xml
 
</code>
 
</code>
  
Make sure that the database, which contains the addressed document, is currently opened.
+
==Backup and Restore==
 
 
=Backup and restore=
 
  
 
* To backup your database, type:
 
* To backup your database, type:
Line 101: Line 110:
 
</code>
 
</code>
  
'''Where is the backup-file stored?'''
+
The backup file is stored in the database directory.
 
+
It contains the name of the database and a timestamp: <code>[db-name]-[timestamp].zip</code>.
The backup-file is stored in the database directory.
+
If a database is to be restored, and if several backups exist, the backup with the newest timestamp is taken.
The file is named <code>factbook-timestamp.zip</code> (<code>db_name-timestamp.zip</code>).
 
To restore the database the file with the newest timestamp is taken.
 
 
 
[[Category:Beginner]]
 

Revision as of 11:46, 2 July 2020

This page is part of the Getting Started Section. It introduces you to the standalone command-line mode of BaseX.

Startup

The command-line client can be started as follows:

  • Run one of the basex or basex.bat scripts.
  • If you have installed BaseX on Windows, click on the BaseX Standalone icon.

Various command-line options are available to simplify batch processing. The start script can be adjusted for individual purposes (e.g. if the default memory limit is too restrictive).

Please note that the standalone client must not be used if you perform parallel (concurrent) read and write operations on your databases. See Concurrent Operations for more details.

Operations

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, but make sure that the database, which contains the addressed document, is currently opened:

> DELETE factbook.xml

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 to be restored, and if several backups exist, the backup with the newest timestamp is taken.