Hello,
I'm looking to create a program to convert from lower to uppercase for all fields. I'm using some knowledge obtained in SQL to create this, and that is obviously why I need help. It compiles properly, not sure if everything would compile regardless of whether it works or not.
Here it is:
* This is to convert all lowercase to uppercase
DO uppercas
CASE
WHEN () 'a' THEN 'A'
WHEN () 'b' THEN 'B'
WHEN () 'c' THEN 'C'
and so on through the alphabet
END CASE
END;
I'm getting a couple of error messages like-"Allowed DO nesting level exceeded" and "Command is missing required clause" and the las being, of course, "Syntax Error."
I would truly appreciate any help as this is my first .prg
Thanks,
David
I'm looking to create a program to convert from lower to uppercase for all fields. I'm using some knowledge obtained in SQL to create this, and that is obviously why I need help. It compiles properly, not sure if everything would compile regardless of whether it works or not.
Here it is:
* This is to convert all lowercase to uppercase
DO uppercas
CASE
WHEN () 'a' THEN 'A'
WHEN () 'b' THEN 'B'
WHEN () 'c' THEN 'C'
and so on through the alphabet
END CASE
END;
I'm getting a couple of error messages like-"Allowed DO nesting level exceeded" and "Command is missing required clause" and the las being, of course, "Syntax Error."
I would truly appreciate any help as this is my first .prg
Thanks,
David