Commit 0763046c authored by Alexander Butenko's avatar Alexander Butenko

adjustments in rawQuery readme

parent acd39d3e
......@@ -207,10 +207,7 @@ $json = $db->JsonBuilder()->getOne("users");
### Running raw SQL queries
```php
// filtering enabled
$users = $db->rawQuery('SELECT * from users where customerId=?', Array (10));
// filtering disabled
//$users = $db->rawQuery('SELECT * from users where id >= ?', Array (10));
$users = $db->rawQuery('SELECT * from users where id >= ?', Array (10));
foreach ($users as $user) {
print_r ($user);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment