Ejemplo n.º 1
0
 /**
  * Returns the column PDO type integer for this column's mapping type.
  *
  * @return integer
  */
 public function getPDOType()
 {
     return PropelTypes::getPDOType($this->getType());
 }
Ejemplo n.º 2
0
 /**
  * Returns the column PDO type integer for this column's mapping type.
  *
  * @return integer
  */
 public function getPDOType()
 {
     if ($this->isCustomType()) {
         $customType = $this->getCustomType();
         return $customType::__getPDOType();
     }
     return PropelTypes::getPDOType($this->getType());
 }