From ddc0de38f64e5834ce04f0407a8416172b596655 Mon Sep 17 00:00:00 2001 From: wei <> Date: Sat, 16 Dec 2006 03:56:03 +0000 Subject: removed adodb and framework/DataAccess --- .../SQLMap/Configuration/TParameterProperty.php | 72 ---------------------- 1 file changed, 72 deletions(-) delete mode 100644 framework/DataAccess/SQLMap/Configuration/TParameterProperty.php (limited to 'framework/DataAccess/SQLMap/Configuration/TParameterProperty.php') diff --git a/framework/DataAccess/SQLMap/Configuration/TParameterProperty.php b/framework/DataAccess/SQLMap/Configuration/TParameterProperty.php deleted file mode 100644 index 196f27f5..00000000 --- a/framework/DataAccess/SQLMap/Configuration/TParameterProperty.php +++ /dev/null @@ -1,72 +0,0 @@ -_typeHandlerFactory)) return null; - if(!is_null($this->_typeHandler)) - { - return $this->_typeHandlerFactory->getTypeHandler( - $this->_typeHandler, $this->_dbType); - } - else if(!is_null($this->getType())) - return $this->_typeHandlerFactory->getTypeHandler( - $this->getType(), $this->_dbType); - else - return null; - } - public function setTypeHandler($value){ $this->_typeHandler = $value; } - - public function getType(){ return $this->_type; } - public function setType($value){ $this->_type = $value; } - - public function getColumn(){ return $this->_column; } - public function setColumn($value){ $this->_column = $value; } - - public function getDbType(){ return $this->_dbType; } - public function setDbType($value){ $this->_dbType = $value; } - - public function getProperty(){ return $this->_property; } - public function setProperty($value){ $this->_property = $value; } - - public function getNullValue(){ return $this->_nullValue; } - public function setNullValue($value){ $this->_nullValue = $value; } - - public function getSize(){ return $this->_size; } - public function setSize($value){ $this->_size = $value; } - - public function getPrecision(){ return $this->_precision; } - public function setPrecision($value){ $this->_precision = $value; } - - public function getScale(){ return $this->_scale; } - public function setScale($value){ $this->_scale = $value; } - - - public function getDirection(){ return $this->_direction; } - public function setDirection($value){ $this->_direction = $value; } - - public function initialize($sqlMap) - { - $this->_typeHandlerFactory = $sqlMap->getTypeHandlerFactory(); - // $type = !is_null($this->_typeHandler) ? $this->_typeHandler: $this->_type; - // $this->setTypeHandler($sqlMap->getTypeHandlerFactory()->getTypeHandler($type)); - // if(!is_null($type)) - // var_dump($sqlMap->getTypeHandlerFactory()); - } -} - -?> \ No newline at end of file -- cgit v1.2.3