The Mongo class
Увод
The connection point between MongoDB and PHP.
This class is used to initiate a connection and for database server commands. A typical use is:
<?php
$m = new Mongo(); // connect
$db = $m->selectDatabase(); // get a database object
?>
Синтаксис за класове
Mongo
Mongo
{
/* Methods */
__construct
([ string $server = NULL
[, boolean $connect = TRUE
[, boolean $persistent = FALSE
[, boolean $paired = FALSE
]]]] )
}Съдържание
- Mongo::close — Closes this database connection
- Mongo::connect — Connects to a database server
- Mongo::connectUtil — Connects with a database server
- Mongo::__construct — Creates a new database connection object
- Mongo::dropDB — Drops a database
- Mongo::forceError — Creates a database error on the database [deprecated]
- Mongo::lastError — Check if there was an error on the most recent db operation performed [deprecated]
- Mongo::pairConnect — Connects to paired database server
- Mongo::pairPersistConnect — Creates a persistent connection with paired database servers
- Mongo::persistConnect — Creates a persistent connection with a database server
- Mongo::prevError — Checks for the last error thrown during a database operation [deprecated]
- Mongo::repairDB — Repairs and compacts a database
- Mongo::resetError — Clears any flagged errors on the connection [deprecated]
- Mongo::selectCollection — Gets a database collection
- Mongo::selectDB — Gets a database
- Mongo::__toString — String representation of this connection
Mongo
There are no user contributed notes for this page.
