示例#1
0
 /**
  * Get base tables and views
  *
  * @param string $schema
  * @return Object\TableObject[]
  */
 public function getViews($schema = null)
 {
     return $this->source->getViews($schema);
 }
示例#2
0
文件: Metadata.php 项目: rikaix/zf2
 /**
  * Get views
  * 
  * @param  string $schema
  * @param  string $database
  * @return array 
  */
 public function getViews($schema = null, $database = null)
 {
     return $this->source->getViews();
 }