MySQL Forums
Forum List  »  Stored Procedures

Re: UPPER function doesn't work anymore
Posted by: Pierre Christen
Date: August 31, 2005 10:34PM

Hi Peter,

Noticed identical problems here...
UPPER works when you parse a string, not a variable: i.e.

FUNC testing (myString CHAR(50)) RETURNS char(50)
begin
...
SET inString = UPPER(myString); // Will not work anymore
but
SET inString = UPPER('hello world'); // Still works !!
...
end

Any help would be appreciated....

Cheers,
Pierre

Running 5.0.11 on Linux

Options: ReplyQuote


Subject
Views
Written By
Posted
4464
August 31, 2005 01:10PM
Re: UPPER function doesn't work anymore
2120
August 31, 2005 10:34PM
1998
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.