Loading TOC...

admin.databaseExists

admin.databaseExists(
   config as element(configuration),
   database-name as String
) as Boolean

Summary

This function determines whether or not the specified database exists. Returns true if the database exists, otherwise false is returned.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.
database-name The name of the database to check.

Example

  
  const admin = require('/MarkLogic/admin.xqy');
  const config = admin.getConfiguration()
  admin.databaseExists(config, "Documents")

   //Returns true if the Documents database exists. 
    

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.