Doctrine + SQL Server Stored Procedures
How c开发者_C百科an I call a stored procedure using Doctrine?
Doctrine doesn't have support for stored procedures per se. The exact method depends on doctrine version, but the best thing to do is to use doctrine native interface and call the proc directly with results eventually mapped to a domain class, if needed.
精彩评论