Search code examples
phpmysqloracle10gpropelgroup-concat

Using GROUP_CONCAT (MySQl) and WM_CONCAT (Oracle) in Propel


Is there a function in Propel ORM which allows me to use something like a GROUP_CONCAT (or WM_CONCAT) aggregation on both Oracle10g and MySQL databases?

Well, I know that I can write my own switch, but that's not desirable for me.

Any suggestions?


Solution

  • No, use withColumn() instead and put your Oracle function in it :)