public function BiblioEntrezClient::getDatabase in Bibliography Module 7
Same name and namespace in other branches
- 6.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getDatabase()
- 6 pubmed/EntrezClient.php \BiblioEntrezClient::getDatabase()
- 7.2 modules/pubmed/EntrezClient.php \BiblioEntrezClient::getDatabase()
Returns the database to be queried in the next search.
Return value
string
5 calls to BiblioEntrezClient::getDatabase()
- BiblioEntrezClient::count in modules/
pubmed/ EntrezClient.php - Returns the number of results for the previously set search terms.
- BiblioEntrezClient::fetch in modules/
pubmed/ EntrezClient.php - Returns the document identified by the given PubMed ID as a SimpleXMl object. The root element is PubmedArticleSet.
- BiblioEntrezClient::fetchRecords in modules/
pubmed/ EntrezClient.php - Returns up to the maximum number of results starting at $retstart found by the previous search.
- BiblioEntrezClient::post in modules/
pubmed/ EntrezClient.php - BiblioEntrezClient::search in modules/
pubmed/ EntrezClient.php - Returns up to the maximum number of items from the result set starting at $retstart.
File
- modules/
pubmed/ EntrezClient.php, line 101 - Provides Entrez client to retrieve items from the NCBI databases.
Class
Code
public function getDatabase() {
return $this->database;
}