Prado\Data\Common\Oracle\TOracleCommandBuilder::isSearchableColumn PHP 메소드

isSearchableColumn() 보호된 메소드

protected isSearchableColumn ( $column ) : boolean
리턴 boolean true if column can be used for LIKE searching.
    protected function isSearchableColumn($column)
    {
        $type = strtolower($column->getDbType());
        return $type === 'character varying' || $type === 'varchar2' || $type === 'character' || $type === 'char' || $type === 'text';
    }