catfan / Medoo

The lightweight PHP database framework to accelerate the development.
https://medoo.in
MIT License
4.83k stars 1.15k forks source link

Auto generate the Response #596

Closed errkranjan closed 6 years ago

errkranjan commented 7 years ago

User expects some output after any Sql exectute. But medoo doesn't output anything after insert weather Insert is executed or not.

catfan commented 7 years ago

insert() and update() returns the PDOStatement object, so you can use its methods to get more information.

$data = $database->update("account", [
    "age[+]" => 1
], [
    "user_id[>]" => 100
]);

// Returns the number of rows affected by the last SQL statement
echo $data->rowCount();