Case insensitive logins plugin (code review) #451
Replies: 1 comment 6 replies
-
I wonder if we should do this by default, or work on a different approach. PostgreSQL uses citext for case insensitive logins, and MySQL and MSSQL are case insensitive by default, so SQLite is the only supported database where you need to do something special for case insensitive logins. Apparently you can get case insensitive behavior in SQLite using One issue with doing this by default is that downcasing automatically could break existing installations on SQLite. So that could only be changed in a major release. Until then, we would need to make it optional. |
Beta Was this translation helpful? Give feedback.
-
Hello again @jeremyevans. Pray all is well with you and your family.
I recently needed to implement case insensitive logins (sqlite) and I came up with a quick and dirty solution which works.
I just wanted to know if this approach is correct so I can solidify the implementation or improve.
I would appreciate your thoughts.
Beta Was this translation helpful? Give feedback.
All reactions