bjverde / sysgen

:elephant: SysGen is crud scaffolding. Generates PHP code using FormDin FrameWork
GNU General Public License v3.0
20 stars 10 forks source link

Bug: Ms Sql Server - Exec Stored Procedures #114

Closed bjverde closed 3 years ago

bjverde commented 3 years ago

Bug: Ms Sql Server - Exec Stored Procedures is related #89

Wrong called $sql = 'EXEC dbo.sp_detalhes_orgao('.$parameters.')';

Correct is $sql = 'EXEC dbo.sp_detalhes_orgao '.$parameters;