GoLang MongoDB::drop

request it (339)
GoLang replacement for PHP's MongoDB::drop [edit | history]



Do you know a GoLang replacement for PHP's MongoDB::drop? Write it!

PHP MongoDB::drop

PHP original manual for MongoDB::drop [ show | php.net ]

MongoDB::drop

(PECL mongo >=0.9.0)

MongoDB::dropDrops this database

Description

public array MongoDB::drop ( void )

This drops the database currently being used.

This is identical to running:

<?php

public function drop() {
    
$this->command(array("dropDatabase" => 1));
}

?>

Parameters

This function has no parameters.

Return Values

Returns the database response.

Examples

Example #1 MongoDB::drop() example

This example demonstrates how to drop a mongo database and the response to expect.

<?php

$db 
$mongo->foo;
$response $db->drop();
print_r($response);

?>

The above example will output something similar to:

Array
(
    [dropped] => foo.$cmd
    [ok] => 1
)