diff options
author | Daniel <darthdaniel85@gmail.com> | 2013-12-09 02:04:04 -0500 |
---|---|---|
committer | Daniel <darthdaniel85@gmail.com> | 2013-12-09 02:04:04 -0500 |
commit | 4312f846098706c19576a4438704a5f22eb2d32d (patch) | |
tree | 012d2c682821d23c56a3804aa8eeddbc5584c694 /framework/Data/Common/Oracle/TOracleMetaData.php | |
parent | e04fb5c765252593fb88fb56eaefbdc88bbeb7d1 (diff) |
Support for all PRADO DB drivers!
Diffstat (limited to 'framework/Data/Common/Oracle/TOracleMetaData.php')
-rw-r--r-- | framework/Data/Common/Oracle/TOracleMetaData.php | 38 |
1 files changed, 37 insertions, 1 deletions
diff --git a/framework/Data/Common/Oracle/TOracleMetaData.php b/framework/Data/Common/Oracle/TOracleMetaData.php index 793070ed..8648fcc9 100644 --- a/framework/Data/Common/Oracle/TOracleMetaData.php +++ b/framework/Data/Common/Oracle/TOracleMetaData.php @@ -336,5 +336,41 @@ EOD; } return false; } -} + + /** + * Returns all table names in the database. + * @param string $schema the schema of the tables. Defaults to empty string, meaning the current or default schema. + * If not empty, the returned table names will be prefixed with the schema name. + * @return array all table names in the database. + */ + public function findTableNames($schema='') + { + if($schema==='') + { + $sql=<<<EOD +SELECT table_name, '{$schema}' as table_schema FROM user_tables +EOD; + $command=$this->getDbConnection()->createCommand($sql); + } + else + { + $sql=<<<EOD +SELECT object_name as table_name, owner as table_schema FROM all_objects +WHERE object_type = 'TABLE' AND owner=:schema +EOD; + $command=$this->getDbConnection()->createCommand($sql); + $command->bindParam(':schema',$schema); + } + $rows=$command->queryAll(); + $names=array(); + foreach($rows as $row) + { + if($schema===$this->getDefaultSchema() || $schema==='') + $names[]=$row['TABLE_NAME']; + else + $names[]=$row['TABLE_SCHEMA'].'.'.$row['TABLE_NAME']; + } + return $names; + } +}
\ No newline at end of file |