Database level operations.
No database profiling.
Only profile slow operations.
Profile all operations.
Get a database by connection and name.
Raises TypeError if name is not an instance of basestring. Raises InvalidName if name is not a valid database name.
Parameters : |
|
---|
See general MongoDB documentation
Get the collection_name Collection of Database db.
Raises InvalidName if an invalid collection name is used.
Is it OK to perform queries on a secondary or slave?
New in version 2.0.
Use getlasterrer with every write operation?
New in version 2.0.
Returns a dict of the getlasterror options set on this instance.
New in version 2.0.
Set getlasterror options for this instance.
Valid options include j=<bool>, w=<int>, wtimeout=<int>, and fsync=<bool>. Implies safe=True.
Parameters : |
|
---|
New in version 2.0.
Unset getlasterror options for this instance.
If no options are passed unsets all getlasterror options. This does not set safe to False.
Parameters : |
|
---|
New in version 2.0.
Add a new son manipulator to this database.
Newly added manipulators will be applied before existing ones.
Parameters : |
|
---|
Create user name with password password.
Add a new user with permissions for this Database.
Note
Will change the password if user name already exists.
Parameters : |
|
---|
New in version 1.4.
Authenticate to use this database.
Once authenticated, the user has full read and write access to this database. Raises TypeError if either name or password is not an instance of (str, unicode). Authentication lasts for the life of the underlying Connection, or until logout() is called.
The “admin” database is special. Authenticating on “admin” gives access to all databases. Effectively, “admin” access means root access to the database.
Note
This method authenticates the current connection, and will also cause all new socket connections in the underlying Connection to be authenticated automatically.
Warning
Currently, calls to end_request() will lead to unpredictable behavior in combination with auth. The socket owned by the calling thread will be returned to the pool, so whichever thread uses that socket next will have whatever permissions were granted to the calling thread.
Parameters : |
|
---|
See general MongoDB documentation
Get a list of all the collection names in this database.
Issue a MongoDB command.
Send command command to the database and return the response. If command is an instance of basestring then the command {command: value} will be sent. Otherwise, command must be an instance of dict and will be sent as is.
Any additional keyword arguments will be added to the final command document before it is sent.
For example, a command like {buildinfo: 1} can be sent using:
>>> db.command("buildinfo")
For a command where the value matters, like {collstats: collection_name} we can do:
>>> db.command("collstats", collection_name)
For commands that take additional arguments we can use kwargs. So {filemd5: object_id, root: file_root} becomes:
>>> db.command("filemd5", object_id, root=file_root)
Parameters : |
|
---|
Changed in version 1.6: Added the value argument for string commands, and keyword arguments for additional command options.
Changed in version 1.5: command can be a string in addition to a full document.
New in version 1.4.
See general MongoDB documentation
The Connection instance for this Database.
Changed in version 1.3: connection is now a property rather than a method.
Create a new Collection in this database.
Normally collection creation is automatic. This method should only be used to specify options on creation. CollectionInvalid will be raised if the collection already exists.
Options should be passed as keyword arguments to this method. Any of the following options are valid:
- “size”: desired initial size for the collection (in bytes). must be less than or equal to 10000000000. For capped collections this size is the max size of the collection.
- “capped”: if True, this is a capped collection
- “max”: maximum number of objects if capped (optional)
Parameters : |
|
---|
Changed in version 1.5: deprecating options in favor of kwargs
Get information on operations currently running.
Dereference a DBRef, getting the document it points to.
Raises TypeError if dbref is not an instance of DBRef. Returns a document, or None if the reference does not point to a valid document. Raises ValueError if dbref has a database specified that is different from the current database.
Parameters : |
|
---|
Drop a collection.
Parameters : |
|
---|
Get a database error if one occured on the last operation.
Return None if the last operation was error-free. Otherwise return the error that occurred.
Evaluate a JavaScript expression in MongoDB.
Useful if you need to touch a lot of data lightly; in such a scenario the network transfer of the data could be a bottleneck. The code argument must be a JavaScript function. Additional positional arguments will be passed to that function when it is run on the server.
Raises TypeError if code is not an instance of (str, unicode, Code). Raises OperationFailure if the eval fails. Returns the result of the evaluation.
Parameters : |
|
---|
List all incoming SON copying manipulators installed on this instance.
New in version 2.0.
List all incoming SON manipulators installed on this instance.
New in version 2.0.
Get status information from the last operation.
Returns a SON object with status information.
Deauthorize use of this database for this connection and future connections.
Note
Other databases may still be authenticated, and other existing socket connections may remain authenticated for this database unless you reset all sockets with disconnect().
The name of this Database.
Changed in version 1.3: name is now a property rather than a method.
List all outgoing SON copying manipulators installed on this instance.
New in version 2.0.
List all outgoing SON manipulators installed on this instance.
New in version 2.0.
Get the most recent error to have occurred on this database.
Only returns errors that have occurred since the last call to Database.reset_error_history. Returns None if no such errors have occurred.
Returns a list containing current profiling information.
See general MongoDB documentation
Get the database’s current profiling level.
Returns one of (OFF, SLOW_ONLY, ALL).
See general MongoDB documentation
Remove user name from this Database.
User name will no longer have permissions to access this Database.
Parameters : |
|
---|
New in version 1.4.
Reset the error history of this database.
Calls to Database.previous_error will only return errors that have occurred since the most recent call to this method.
Set the database’s profiling level.
Raises ValueError if level is not one of (OFF, SLOW_ONLY, ALL).
Parameters : |
|
---|
See general MongoDB documentation
A SystemJS helper for this Database.
See the documentation for SystemJS for more details.
New in version 1.5.
Validate a collection.
Returns a dict of validation info. Raises CollectionInvalid if validation fails.
With MongoDB < 1.9 the result dict will include a result key with a string value that represents the validation results. With MongoDB >= 1.9 the result key no longer exists and the results are split into individual fields in the result dict.
Parameters : |
|
---|
Changed in version 1.11: validate_collection previously returned a string.
New in version 1.11: Added scandata and full options.
Get a system js helper for the database database.
An instance of SystemJS can be created with an instance of Database through Database.system_js, manual instantiation of this class should not be necessary.
SystemJS instances allow for easy manipulation and access to server-side JavaScript:
>>> db.system_js.add1 = "function (x) { return x + 1; }"
>>> db.system.js.find({"_id": "add1"}).count()
1
>>> db.system_js.add1(5)
6.0
>>> del db.system_js.add1
>>> db.system.js.find({"_id": "add1"}).count()
0
Note
Requires server version >= 1.1.1
New in version 1.5.
Get a list of the names of the functions stored in this database.
New in version 1.9.