query() deprecated
query()
is deprecated and will be removed in version 1.5.x.
Use
The
It does not support query bindings or JSON mode and should be avoided in new projects.
rawQuery()
instead.The
query()
method is now just a lightweight alias of rawQuery()
and serves no additional purpose.It does not support query bindings or JSON mode and should be avoided in new projects.
Migration Example
// Old usage:
$result = $db->query("SELECT * FROM test_users", 10);
// New preferred usage:
$result = $db->rawQuery("SELECT * FROM test_users LIMIT 10");