17 Nov
2007
17 Nov
'07
3:06 a.m.
"Khalid Baheyeldin" <kb@2bits.com> wrote:
The LOWER issue that is being refered to is this http://drupal.org/node/83738.
I have voiced my concern, together with others, on adding so many columns just to get around the case sensitive of a database that is not much in use.
I agree with your concern 100%. In PostgreSQL, the correct way to solve this problem would be to add an index: create index lower_name on users (LOWER(name)); Said index will then be used any time a WHERE clause references LOWER(name). This avoids the problems of adding a column. Does MySQL not have this capability? -- Bill Moran http://www.potentialtech.com