我在mysql
上使用CREATE FUNCTION
在名为getDtails(id)的数据库上运行
我可以使用返回aninteger的SELECT getDetails(10)
从mysql调用它。
我想使用doctrine从symfony 1.4执行它。
答案 0 :(得分:1)
你可以这样做:
Doctrine_Manager::getInstance()->getCurrentConnection()
->fetchAssoc('SELECT getDetails(10)');
您可以根据需要将fetchAssoc
替换为fetchArray
或fetchBoth
。
Doctrine_Connection
课程的文档为here