/** * Returns the column PDO type integer for this column's mapping type. * * @return integer */ public function getPDOType() { return PropelTypes::getPDOType($this->getType()); }
/** * 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()); }