MySQL Forums
Forum List  »  Stored Procedures

UPPER function doesn't work anymore
Posted by: Peter Feibert
Date: August 31, 2005 01:10PM

I am using W2K and MySQl 5.0.11.

Since I upgraded from 5.0.4 (or something like that) MySQL's UPPER function no longer UPPERs my data. I pass it via IN parameters to my stored proc, then I TRIM and UPPER the data, llike so:

MYSTOREDPROC(in pphocode char(3))
begin
...
set pphocode = UPPER(TRIM(pphocode));
...
end;

What happens? The data when in lower case stays lower. When upper it stays upper. But I need it to be UPPER always.

What's happening?

Thanks,

Peter Feibert

Options: ReplyQuote


Subject
Views
Written By
Posted
UPPER function doesn't work anymore
4470
August 31, 2005 01:10PM
2003
September 01, 2005 02:22PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.