You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to store some strings to a database but, in some cases, I need a punctuated version of the same string to be inserted to a table.
An example could be a string like 'cascos para niños' and 'cascos para ninos'. I need both of them to be inserted in a table but, currently, they are considered to be equal preventing them to be inserted twice as different values.
Is there a way I could store them both?
Thanks!
The text was updated successfully, but these errors were encountered:
@doubledot-web they are not "punctuated" your strings are "accented". indexing relies on column character set (or table-default or database-default).
with your current set up, engine doesn't differentiate accented and non-accented stings - thus you have this situation.
Hi @yadakhov!
Thanks for your great work!
I'm trying to store some strings to a database but, in some cases, I need a punctuated version of the same string to be inserted to a table.
An example could be a string like 'cascos para niños' and 'cascos para ninos'. I need both of them to be inserted in a table but, currently, they are considered to be equal preventing them to be inserted twice as different values.
Is there a way I could store them both?
Thanks!
The text was updated successfully, but these errors were encountered: