breezett93
Technical User
Hello
I am creating a program that pulls out records if a certain criteria is matched. In this case, the criteria is the column, Class, matching a particular code.
Unfortunately, the original creator of the table must not have known that Class is a reserved keyword, and it's causing issues in my program.
Here is a brief bit of my program:
I'm looking for a solution that allows me to not have to rename the column which could break other programs utilizing this table.
Is there a way to give an alias to a column like a table?
Thanks
I am creating a program that pulls out records if a certain criteria is matched. In this case, the criteria is the column, Class, matching a particular code.
Unfortunately, the original creator of the table must not have known that Class is a reserved keyword, and it's causing issues in my program.
Here is a brief bit of my program:
Code:
DO WHILE .NOT. EOF()
IF A->CLASS = "Z8"
[indent][/indent]//Copy record to different table
[indent]ENDIF[/indent]
ENDDO
I'm looking for a solution that allows me to not have to rename the column which could break other programs utilizing this table.
Is there a way to give an alias to a column like a table?
Thanks