KMoody
Member
I want to populate a reference temp table with hard-coded information:
(At the moment, we cannot add a new table to the database with this information.)
Is there a more elegant way to do this?
Code:
CREATE glConverter.
glConverter.gl-num = "40101".
glConverter.prod-code = "30101".
RELEASE glConverter.
CREATE glConverter.
glConverter.gl-num = "40102".
glConverter.prod-code = "30102".
RELEASE glConverter.
CREATE glConverter.
glConverter.gl-num = "40212".
glConverter.prod-code = "30212".
RELEASE glConverter.
CREATE glConverter.
glConverter.gl-num = "40228".
glConverter.prod-code = "30228".
RELEASE glConverter.
/*etc...............*/
(At the moment, we cannot add a new table to the database with this information.)
Is there a more elegant way to do this?