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