Robert Diego de Jesus
Robert Diego de Jesus
As with the 'queries' sql return run it would be possible for **INSERT, UPDATE, and DELETE** operations? ``` $Query = QB::table('my_table')->where('city', '=', 'New York')->update(['name', 'Robert']); $QueryObj = $query->getQuery(); $QueryObj->getRawSql(); ```...
Sorry my english. How to know the number of rows affected after an operation INSERT, UPDATE or DELETE? Would use at **PDO**: [PDOStatement::rowCount](http://php.net/manual/pt_BR/pdostatement.rowcount.php) .
Hello. Retrieving a querystring in a paging system? My URL is: > http://localhost:8080/simpla/panel/car?pg=2&sort=plate#Name My Route is: `$router->controller("simpla/panel/car", "Example\\Car");` I want to retrieve the querystring by `$_GET` and move to the...