diff options
author | tof <> | 2007-07-26 13:00:36 +0000 |
---|---|---|
committer | tof <> | 2007-07-26 13:00:36 +0000 |
commit | 7a6237851105059b29ec9293560621e9e2aeab11 (patch) | |
tree | fcd6b594c248311a5a8077ef5c22d86d8d85fba0 /framework/Data/Common/Oracle/TOracleTableColumn.php | |
parent | ee12eaf62f5e7c63e76cb850c2268545763db9ac (diff) |
Add primilary Oracle support.
Diffstat (limited to 'framework/Data/Common/Oracle/TOracleTableColumn.php')
-rw-r--r-- | framework/Data/Common/Oracle/TOracleTableColumn.php | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/framework/Data/Common/Oracle/TOracleTableColumn.php b/framework/Data/Common/Oracle/TOracleTableColumn.php new file mode 100644 index 00000000..6e387cfb --- /dev/null +++ b/framework/Data/Common/Oracle/TOracleTableColumn.php @@ -0,0 +1,51 @@ +<?php +/** + * TOracleTableColumn class file. + * + * @author Marcos Nobre <marconobre[at]gmail[dot]com> + * @link http://www.pradosoft.com/ + * @copyright Copyright © 2005-2007 PradoSoft + * @license http://www.pradosoft.com/license/ + * @version $Id$ + * @package System.Data.Common.Oracle + */ + +/** + * Load common TDbTableCommon class. + */ +Prado::using('System.Data.Common.TDbTableColumn'); + +/** + * Describes the column metadata of the schema for a PostgreSQL database table. + * + * @author Marcos Nobre <marconobre[at]gmail[dot]com> + * @version $Id$ + * @package System.Data.Common.Oracle + * @since 3.1.1 + */ +class TOracleTableColumn extends TDbTableColumn +{ + private static $types=array( + 'numeric' => array( 'numeric' ) +// 'integer' => array('bit', 'bit varying', 'real', 'serial', 'int', 'integer'), +// 'boolean' => array('boolean'), +// 'float' => array('bigint', 'bigserial', 'double precision', 'money', 'numeric') + ); + + /** + * Overrides parent implementation, returns PHP type from the db type. + * @return boolean derived PHP primitive type from the column db type. + */ + public function getPHPType() + { + $dbtype = strtolower($this->getDbType()); + foreach(self::$types as $type => $dbtypes) + { + if(in_array($dbtype, $dbtypes)) + return $type; + } + return 'string'; + } +} + +?>
\ No newline at end of file |