views:

385

answers:

1

Hi, how can i call my own function stored in postgres DB, while i am selecting data throught

Doctrine_Query::create()
->select('schema.my_function(id)')
A: 

This thread shows a couple options. If you just need to execute the function then Raw SQL should work. If you need to get results back then you may need another option.

cope360