But how does that make my queries of data in the database case sensitive? It seems to me that this just ensures case insenitivity, which is essentially what I am experiencing now.
Let me clarify: If I have stored in the database the string value, "Fred", and the user enters "fred" in the search screen, I want the search to FAIL to find anything (assuming I do not have value "fred" in the database). I want the search to succeed only if the user enters "Fred" (exact, by case).
I want to know if I can force Hibernate to behave in its queries (this specific query) in a case sensitive manner.
|