Quote:
Originally Posted by DavidAllen
Out of interest - why would you want it case insensitive in the first place?
|
A programming colleague was just being lazy. He used SQL Server queries like this
Code:
select * from PRODUCTS;
select * from proudcts;
Which would never have worked.
Anyway he sorted it now he is using upper-case throughout.
Cheers Stu