Access isn't case sensitive. What brand of database are you linking to?
If Oracle, you can't turn it off. Instead you need to use the Upper function
to make everything upper case. Of course this messes up using a conventional
index.
WHERE Upper([TheField]) = Upper([YourParameter])
You could use something convoluted like below:
WHERE [TheField] = 'SMITH'
OR [TheField] = 'Smith'
OR [TheField] = 'smith'
--
Jerry Whittle
Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder.
lollygagger said:
When doing a query on data base files, I would like to be able to turn off
case sensitive. How can I do that?