function DB_common::getTables in Flickr API 5
Lists the tables in the current database
Return value
array the list of tables. A DB_Error object on failure.
Deprecated
Method deprecated some time before Release 1.2
File
- phpFlickr/
PEAR/ DB/ common.php, line 2049
Class
- DB_common
- DB_common is the base class from which each database driver class extends
Code
function getTables() {
return $this
->getListOf('tables');
}