mirror of https://gitee.com/bigwinds/arangodb
29 lines
928 B
Plaintext
29 lines
928 B
Plaintext
!CHAPTER Database Management
|
|
|
|
This is an introduction to ArangoDB's Http interface for managing databases.
|
|
|
|
The HTTP interface for databases provides operations to create and drop
|
|
individual databases. These are mapped to the standard HTTP methods *POST*
|
|
and *DELETE*. There is also the *GET* method to retrieve an array of existing
|
|
databases.
|
|
|
|
Please note that all database management operations can only be accessed via
|
|
the default database (*_system*) and none of the other databases.
|
|
|
|
!SECTION Managing Databases using HTTP
|
|
|
|
<!-- js/actions/api-database.js -->
|
|
@startDocuBlock JSF_get_api_database_current
|
|
|
|
<!-- js/actions/api-database.js -->
|
|
@startDocuBlock JSF_get_api_database_user
|
|
|
|
<!-- js/actions/api-database.js -->
|
|
@startDocuBlock JSF_get_api_database_list
|
|
|
|
<!-- js/actions/api-database.js -->
|
|
@startDocuBlock JSF_get_api_database_new
|
|
|
|
<!-- js/actions/api-database.js -->
|
|
@startDocuBlock JSF_get_api_database_delete
|