You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For comparison, it is possible in dabble to use the (somewhat limited) delete method, with key-value pairs for the where clause:
$db->delete('posts', array('published' => true));
// instead of having to use
$db->query('DELETE FROM `posts` WHERE `published` = :published', array('published' => true));
It would also be great to have a SELECT helper that works the same way
$db->select('posts', array('published' => true))->fetch();
// vs
$db->query('SELECT FROM `posts` WHERE `published` = :published', array('published' => true))->fetch();
BTW, Dabble is awesome! 👍
The text was updated successfully, but these errors were encountered:
For comparison, it is possible in dabble to use the (somewhat limited) delete method, with key-value pairs for the where clause:
It would also be great to have a SELECT helper that works the same way
BTW, Dabble is awesome! 👍
The text was updated successfully, but these errors were encountered: