Liking cljdoc? Tell your friends :D

clj-arangodb.arangodb.core


connectclj

(connect)
(connect options)

Takes an optional map that may contain the following: keys have the same names as the java methods. :host a pair default is ['127.0.0.1' 8529] :user a String default is 'root' :password String by default no password is used :use-protocol vst | http-json | http-vpack (:vst by default) :ssl-context SSlContext not used :timeout Integer | Long :chunksize Integer | Long :max-connections Integer | Long

Takes an optional map that may contain the following:
keys have the same names as the java methods.
:host a pair default is ['127.0.0.1' 8529]
:user a String default is 'root'
:password String by default no password is used
:use-protocol vst | http-json | http-vpack (:vst by default)
:ssl-context SSlContext not used
:timeout Integer | Long
:chunksize Integer | Long
:max-connections Integer | Long
sourceraw docstring

create-and-get-databaseclj

(create-and-get-database conn db-name)
sourceraw docstring

create-databaseclj

(create-database conn db-name)

returns true on success else ArangoDBException

returns `true` on success else `ArangoDBException`
sourceraw docstring

database?clj

(database? conn db-name)

returns true if db-name is an existsing db

returns true if `db-name` is an existsing db
sourceraw docstring

dbclj

(db conn db-name)

Always returns a new ArrangoDatabase even if no such database exists the returned object can be used if a databse is created at a later time

Always returns a new `ArrangoDatabase` even if no such database exists
the returned object can be used if a databse is created at a later time
sourceraw docstring

get-databaseclj

source

get-databasesclj

(get-databases conn)

returns a vec of strings corresponding to the names of databases

returns a `vec` of strings corresponding to the names of databases
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close