We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Case-sensitive for bound parameter?

I have a query as below:

$user = User::findFirst(array(
    "user_email=:email: AND user_pass=:pass:",
    "bind" => array(
        "email" => $email,
        "pass" = $pass
    )
));

And how can I make case-sensitive for $pass in this query? Thank for helping me!

Thank Óscar Enríquez!