Reputation: 35282
I'm using TaffyDB for a "DB" for the website I am working on right now. Its pretty neat, I can do 'like' searches. However, the 'like' search is still case sensitive and that if a record exist: "Banana", a query of "banana" will fail.
Upvotes: 3
Views: 399
Reputation: 1835
Simply use likenocase
:
db( {title:{"likenocase":val}} ).order( ...
Upvotes: 3