-
Notifications
You must be signed in to change notification settings - Fork 1
case sensitive/insensitive name and fuzzy_name? #5
Description
this is a great resource, and this puts my dumb little discord bot toy I was trying to make on my own a lot nicer to pull data into and out of versus cobbling it from scratch and the AllPrintings sqlitedb. Thank you first, and in advance, for your hard work.
Without building my own raw sql queries, is there a sdk way to pass a LOWER/UPPER select function to match a lower- or upper-case search string?
For example, name="Demonic Tutor" matches 27, name="demonic tutor" matches zero, but fuzzy_name="demonic tutor" will return "Demonic Tutor", but something way out of bounds like name/fuzzy_name="dEMONIC tUTOR" matches zero again.
If i could match against upper() or lower() in specific circumstances using your library that would save me doing it the hard way.