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)')
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)')
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.