We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using MySQL, when trying to use the database "like" function and passing an associative array:
$this->db->like(array('first_name'=>'harry', 'last_name'=>'groover'));
It should produce:
SELECT `first_name`, `last_name`, `username` FROM `person` WHERE `first_name` LIKE '%harry%' AND `last_name` LIKE '%groover%'
Instead it produces:
SELECT `first_name`, `last_name`, `username` FROM `person` WHERE `first_name` LIKE '%harry%' ESCAPE '!' `last_name` LIKE '%groover%' ESCAPE '!'
The text was updated successfully, but these errors were encountered:
4173823
Worked great, thank you!
Sorry, something went wrong.
Fix bcit-ci#2041
eb37aed
No branches or pull requests
I'm using MySQL, when trying to use the database "like" function and passing an associative array:
It should produce:
Instead it produces:
The text was updated successfully, but these errors were encountered: