I have a created a table in a database. In one of its column, I have to insert some data in Arabic, where its alphabatics are symbolzed in ASCI greater than 127, however, to keep Arabic data to be displayed in correct alphabatical order, I must set this field as Binary.
Ok.
However, this leads to Case sensetivity problem when I try to select a record in any latin alphabaics, like English, from this table.
To clearfy that situation, look at the following Example:
Suppose;
SELECT * FROM mytablename WHERE myfield = 'boolmx'
Ok, In myfield already I have data = BoolMX.
So, due to case sensetivity, the query does not find any thing.
Now, I need case senstivity to be neglected and at the same time I want to keep this field to be Binary.
Is this Possible? and How?
🙁