MySQL Forums
Forum List  »  Stored Procedures

Re: String manipulation and RIGHT() Problem
Posted by: Barak Mery
Date: November 20, 2005 12:27PM

I solved it myself.
It seems to be some bug.

I changed:

SET RowStr = RIGHT(RowStr,LENGTH(RowStr) - FldPos);

to:

SET TempStr = RowStr;
SET RowStr = '';
SET RowStr = RIGHT(TempStr,LENGTH(TempStr) - FldPos);

And its working i dont understand why but it does.

Options: ReplyQuote


Subject
Views
Written By
Posted
5676
November 20, 2005 08:43AM
Re: String manipulation and RIGHT() Problem
2000
November 20, 2005 12:27PM


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.