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?
No, use withColumn()
instead and put your Oracle function in it :)