Posts by Bruno Coutinho • 22 points
3 posts
-
0
votes1
answer15
viewsA: How to pass arguments on a stored procedure in Mysql?
Try changing that line: Let sql = CALL recebePedido(?) for sql Let = CALL recebePedido(?,?,?,?,?,?,?,?,?) because he is complaining that he expects nine arguments and Voce is passing only 1. I hope…
-
-2
votes1
answer71
viewsQ: Add Laravel resources to an existing project
I’m new in the world PHP and Laravel, but I joined a project that the original team has no contact with and I’m in a demand and I didn’t want to put in CRON the execution of e-mail routines. This…
-
1
votes1
answer136
viewsQ: How to configure the pdo_mysql driver in Laravel 6
Laraveldoctrine ORM Exceptions Drivernotfound : Driver [pdo_mysql] not supported. My database.php configuration file is as follows: 'mysql' => [ 'driver' => 'pdo_mysql', 'url' =>…