Difference between revisions of "Command-Line Client"

From BaseX Documentation
Jump to navigation Jump to search
(20 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.
+
BaseX offers a standalone mode in which all [[Commands|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 console mode
+
The article on the [[Database Server]] provides numerous examples for running commands in the standalone mode.
(note that the GUI does ''not'' interact with the client/server architecture).
+
(Note that the standalone mode 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]]).
+
First of all, launch a '''standalone''' version of BaseX: double click on the '''BaseX''' icon (Windows only) or run the <code>basex</code> script. Click on the following links to find more information on [[Startup#Standalone_Mode|starting the standalone mode]],  [[Start_Scripts#Standalone|the standalone mode's start script]] or [[Command-Line_Options#Standalone|the standalone mode's command-line options]].
  
=Create a database=
+
=Create a Database=
  
 
* To create a database you need an XML document, e.g. [http://files.basex.org/xml/factbook.xml factbook.xml].
 
* To create a database you need an XML document, e.g. [http://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:
+
* Type in the following command to create and open the database:
 
<code>
 
<code>
 
> [[Commands#CREATE DB|CREATE DB]] factbook factbook.xml
 
> [[Commands#CREATE DB|CREATE DB]] factbook factbook.xml
Line 22: Line 22:
 
; 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 37: Line 38:
 
</code>
 
</code>
  
=Create a new database=
+
=Database Commands=
 
 
Now we will create another database from the [http://files.basex.org/xml/xmark.xml xmark.xml] document.
 
 
 
* Create and open a new database 'xmark':
 
<code>
 
> [[Commands#CREATE DB|CREATE DB]] xmark xmark.xml
 
</code>
 
 
 
* If you have create the database before, you can open it as follows:
 
<code>
 
> [[Commands#OPEN|OPEN]] xmark
 
</code>
 
 
 
* Execute queries on your database:
 
<code>
 
> [[Commands#XQUERY|XQUERY]] //people/person/name
 
</code>
 
 
 
=Switch the database=
 
  
 
* 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:
 
 
<code>
 
<code>
 
> [[Commands#LIST|LIST]]
 
> [[Commands#LIST|LIST]]
Line 67: Line 48:
 
<code>
 
<code>
 
> [[Commands#OPEN|OPEN]] factbook
 
> [[Commands#OPEN|OPEN]] factbook
 +
</code>
 +
 +
* To get information on the currently opened database, type:
 +
<code>
 +
> [[Commands#INFO|INFO]]
 
</code>
 
</code>
  
 
* You can also address a database within your query with the [[Database Module#db:open|db:open]] function:
 
* You can also address a database within your query with the [[Database Module#db:open|db:open]] function:
 
<code>
 
<code>
> [[Commands#XQUERY|XQUERY]] doc("factbook")//country
+
> [[Commands#XQUERY|XQUERY]] db:open("factbook")//country
 
</code>
 
</code>
  
=Close or delete a database=
+
* To [[Commands|close]] the current database, please type:  
* To [[Commands|close]] the current context database, please type:  
 
 
<code>
 
<code>
 
> [[Commands#CLOSE|CLOSE]]
 
> [[Commands#CLOSE|CLOSE]]
 
</code>
 
</code>
  
* Use the [[Commands#DROP DB|DROP DB]] command to delete the xmark database:
+
* Use the [[Commands#DROP DB|DROP DB]] command to delete a database:
 
<code>
 
<code>
> [[Commands#DROP DB|DROP DB]] xmark
+
> [[Commands#DROP DB|DROP DB]] factbook
 
</code>
 
</code>
  
=Create a collection=
+
=Multiple Resources=
'''What is a collection?'''
 
With BaseX you can group documents into one logical collection. A collection is a database that contains two or more documents. Collections accept any type of XML documents, regardless of their structure.
 
 
 
Let's add the xmark.xml document to the factbook database to create a collection. The name of the original factbook database remains.
 
  
* First make sure factbook is opened:
+
One database can contain not only a single, but millions of documents. All documents can have a different structure.
<code>
 
> [[Commands#OPEN|OPEN]] factbook
 
</code>
 
  
* Now add the xmark.xml document:  
+
With the following commands, you can create an empty database and add two documents. It is also possible to address resources via URLs:
<code>
 
> [[Commands#ADD|ADD]] xmark.xml
 
</code>
 
  
=Delete a document=
 
* Deleting a document from a collection is easy:
 
 
<code>
 
<code>
> [[Commands#DELETE|DELETE]] xmark.xml
+
> [[Commands#CREATE DB|CREATE DB]] store
</code>
+
</code><br/>
 
 
Make sure that the collection, which contains the '''xmark.xml''' document, is opened.
 
 
 
=Delete a collection=
 
Deleting a collection is the same as deleting a database.
 
 
 
* To delete the collection factbook, type:
 
 
<code>
 
<code>
> [[Commands#DROP DB|DROP DB]] factbook
+
> [[Commands#ADD|ADD]] factbook.xml
</code>
+
</code><br/>
 
 
=Get server information=
 
Several commands help to explore the state of a server. For a complete list, please visit the [[Commands]] Section.
 
 
 
* To see all databases on the server, type:
 
 
<code>
 
<code>
> [[Commands#LIST|LIST]]
+
> [[Commands#ADD|ADD]] http://files.basex.org/xml/xmark.xml
 
</code>
 
</code>
  
* To see the general information of the opened database, type:
+
* 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#INFO|INFO]]
+
> [[Commands#DELETE|DELETE]] factbook.xml
 
</code>
 
</code>
  
* To list all sessions that are managed by the server instance, type:
+
=Backup and Restore=
<code>
 
> [[Commands#SHOW USERS|SHOW USERS]]
 
</code>
 
  
=Backup and restore=
 
 
* To backup your database, type:
 
* To backup your database, type:
 
<code>
 
<code>
Line 146: Line 103:
 
</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 12:40, 1 April 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 (Windows only) 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, 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.