Documentation

ListDatabaseNames
in package

FinalYes

Operation for the ListDatabases command, returning only database names.

Tags
see
Client::listDatabaseNames()
see
https://mongodb.com/docs/manual/reference/command/listDatabases/#mongodb-dbcommand-dbcmd.listDatabases

Table of Contents

Properties

$listDatabases  : ListDatabases

Methods

__construct()  : mixed
Constructs a listDatabases command.
execute()  : Iterator<int, string>
Execute the operation.

Properties

Methods

__construct()

Constructs a listDatabases command.

public __construct([array<string|int, mixed> $options = [] ]) : mixed

Supported options:

  • authorizedDatabases (boolean): Determines which databases are returned based on the user privileges.

    For servers < 4.0.5, this option is ignored.

  • comment (mixed): BSON value to attach as a comment to this command.

    This is not supported for servers versions < 4.4.

  • filter (document): Query by which to filter databases.

  • maxTimeMS (integer): The maximum amount of time to allow the query to run.

  • session (MongoDB\Driver\Session): Client session.

Parameters
$options : array<string|int, mixed> = []

Command options

Tags
throws
InvalidArgumentException

for parameter/option parsing errors

execute()

Execute the operation.

public execute(Server $server) : Iterator<int, string>
Parameters
$server : Server
Tags
throws
UnexpectedValueException

if the command response was malformed

throws
RuntimeException

for other driver errors (e.g. connection errors)

Return values
Iterator<int, string>

        
On this page

Search results