mongodb driver query executequery
Parameters. namespace (string). A fully qualified namespace (e.g. "databaseName.collectionName"). query (MongoDB-Driver-Query). ,final public MongoDB-Driver-Manager::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ) : MongoDB-Driver- ... ,final public MongoDB-Driver-Cursor MongoDB-Driver-Manager::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ). ,... which is an immutable value object that represents a database query. The query may then be executed with MongoDB-Driver-Manager::executeQuery(). ,final public MongoDB-Driver-Server::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ) : MongoDB-Driver-Cursor. ,$query = new -MongoDB-Driver-Query($filter, $options); $rows = $mongo->executeQuery('db.collectionName', $query); foreach ($rows as $document)
相關軟體 MongoDB 資訊 | |
---|---|
MongoDB 是一個免費且開放源碼的跨平檯面向文檔的數據庫程序。分類為 NoSQL 數據庫程序,MongoDB 使用類似 JSON 的文檔與模式。它為使用 MongoDB 包括數據庫開發人員和 DBA 的任何人提供了豐富的 GUI 工具。主要功能包括:全功能嵌入 MongoDB Shell,用戶友好的 Map-Reduce 操作編輯器,創建 / 刪除數據庫,管理集合及其索引的能力,用戶友好的 G... MongoDB 軟體介紹
mongodb driver query executequery 相關參考資料
MongoDBDriverManager::executeQuery
Parameters. namespace (string). A fully qualified namespace (e.g. "databaseName.collectionName"). query (MongoDB-Driver-Query). https://doc.bccnsoft.com MongoDBDriverManager::executeQuery - Manual - PHP
final public MongoDB-Driver-Manager::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ) : MongoDB-Driver- ... https://www.php.net MongoDBDriverManager::executeQuery()
final public MongoDB-Driver-Cursor MongoDB-Driver-Manager::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ). http://doc.codingdict.com MongoDBDriverQuery::__construct - Manual - PHP
... which is an immutable value object that represents a database query. The query may then be executed with MongoDB-Driver-Manager::executeQuery(). https://www.php.net MongoDBDriverServer::executeQuery - Manual - PHP
final public MongoDB-Driver-Server::executeQuery ( string $namespace , MongoDB-Driver-Query $query [, array $options = array() ] ) : MongoDB-Driver-Cursor. https://www.php.net PHP: MongoDBDriverQuery - Manual - PHP.net
$query = new -MongoDB-Driver-Query($filter, $options); $rows = $mongo->executeQuery('db.collectionName', $query); foreach ($rows as $document) https://www.php.net |