1

CREATE FUNCTION在 mysql 上使用名为 getDtails(id) 的数据库上的函数

我可以使用它从 mysql 调用它SELECT getDetails(10)返回一个整数。

我想使用教义从 symfony 1.4 执行它。

4

1 回答 1

1

你可以这样做:

Doctrine_Manager::getInstance()->getCurrentConnection()
       ->fetchAssoc('SELECT getDetails(10)');

您可以根据需要替换fetchAssocfetchArrayfetchBoth

Doctrine_Connection该课程的文档在这里

于 2012-11-19T11:51:39.787 回答