Class yii\mongodb\Database
Inheritance | yii\mongodb\Database » yii\base\BaseObject |
---|---|
Implements | yii\base\Configurable |
Available since version | 2.0 |
Source Code | https://github.com/yiisoft/yii2-mongodb/blob/master/Database.php |
Database represents the MongoDB database information.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$connection | yii\mongodb\Connection | MongoDB connection. | yii\mongodb\Database |
$name | string | Name of this database. | yii\mongodb\Database |
Public Methods
Method | Description | Defined By |
---|---|---|
__call() | Calls the named method which is not a class method. | yii\base\BaseObject |
__construct() | Constructor. | yii\base\BaseObject |
__get() | Returns the value of an object property. | yii\base\BaseObject |
__isset() | Checks if a property is set, i.e. defined and not null. | yii\base\BaseObject |
__set() | Sets value of an object property. | yii\base\BaseObject |
__unset() | Sets an object property to null. | yii\base\BaseObject |
canGetProperty() | Returns a value indicating whether a property can be read. | yii\base\BaseObject |
canSetProperty() | Returns a value indicating whether a property can be set. | yii\base\BaseObject |
className() | Returns the fully qualified name of this class. | yii\base\BaseObject |
clearCollections() | Clears internal collection lists. | yii\mongodb\Database |
createCollection() | Creates new collection. | yii\mongodb\Database |
createCommand() | Creates MongoDB command associated with this database. | yii\mongodb\Database |
dropCollection() | Drops specified collection. | yii\mongodb\Database |
getCollection() | Returns the Mongo collection with the given name. | yii\mongodb\Database |
getFileCollection() | Returns Mongo GridFS collection with given prefix. | yii\mongodb\Database |
hasMethod() | Returns a value indicating whether a method is defined. | yii\base\BaseObject |
hasProperty() | Returns a value indicating whether a property is defined. | yii\base\BaseObject |
init() | Initializes the object. | yii\base\BaseObject |
listCollections() | Returns the list of available collections in this database. | yii\mongodb\Database |
Protected Methods
Method | Description | Defined By |
---|---|---|
selectCollection() | Selects collection with given name. | yii\mongodb\Database |
selectFileCollection() | Selects GridFS collection with given prefix. | yii\mongodb\Database |
Property Details
MongoDB connection.
Name of this database.
Method Details
Clears internal collection lists.
This method can be used to break cycle references between yii\mongodb\Database and yii\mongodb\Collection instances.
public void clearCollections ( ) |
Creates new collection.
Note: Mongo creates new collections automatically on the first demand, this method makes sense only for the migration script or for the case you need to create collection with the specific options.
public boolean createCollection ( $name, $options = [] ) | ||
$name | string | Name of the collection |
$options | array | Collection options in format: "name" => "value" |
return | boolean | Whether operation was successful. |
---|---|---|
throws | yii\mongodb\Exception | on failure. |
Creates MongoDB command associated with this database.
public yii\mongodb\Command createCommand ( $document = [] ) | ||
$document | array | Command document contents. |
return | yii\mongodb\Command | Command instance. |
---|
Drops specified collection.
public boolean dropCollection ( $name ) | ||
$name | string | Name of the collection |
return | boolean | Whether operation was successful. |
---|
Returns the Mongo collection with the given name.
public yii\mongodb\Collection getCollection ( $name, $refresh = false ) | ||
$name | string | Collection name |
$refresh | boolean | Whether to reload the collection instance even if it is found in the cache. |
return | yii\mongodb\Collection | Mongo collection instance. |
---|
Returns Mongo GridFS collection with given prefix.
public yii\mongodb\file\Collection getFileCollection ( $prefix = 'fs', $refresh = false ) | ||
$prefix | string | Collection prefix. |
$refresh | boolean | Whether to reload the collection instance even if it is found in the cache. |
return | yii\mongodb\file\Collection | Mongo GridFS collection. |
---|
Returns the list of available collections in this database.
public array listCollections ( $condition = [], $options = [] ) | ||
$condition | array | Filter condition. |
$options | array | Options list. |
return | array | Collections information. |
---|
Selects collection with given name.
protected yii\mongodb\Collection selectCollection ( $name ) | ||
$name | string | Collection name. |
return | yii\mongodb\Collection | Collection instance. |
---|
Selects GridFS collection with given prefix.
protected yii\mongodb\file\Collection selectFileCollection ( $prefix ) | ||
$prefix | string | File collection prefix. |
return | yii\mongodb\file\Collection | File collection instance. |
---|