2

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?

derphil
  • 385
  • 6
  • 25

1 Answers1

1

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

William Durand
  • 5,439
  • 1
  • 26
  • 37