You are here

function DB_result::tableInfo in Flickr API 5

Deprecated

Method deprecated some time before Release 1.2

See also

DB_common::tableInfo()

File

phpFlickr/PEAR/DB.php, line 1300

Class

DB_result
This class implements a wrapper for a DB result set

Code

function tableInfo($mode = null) {
  if (is_string($mode)) {
    return $this->dbh
      ->raiseError(DB_ERROR_NEED_MORE_DATA);
  }
  return $this->dbh
    ->tableInfo($this, $mode);
}