To define a DB2 table declaration and cursor declarations

Restriction: This topic applies only when the AppMaster Builder AddPack has been installed, and applies only to Windows platforms.
  1. Type SQL in columns 4 through 6.
  2. Type the declaration(s) starting in column 12. For example:
       SQL     DECLARE DSN8.TDEPT TABLE
               ... (DEPTNO CHAR(3) NOT NULL,
               ... DEPTNAME CHAR(36) NOT NULL,
               ... MGRNO CHAR(3) NOT NULL,
               ... ADMRDEPT CHAR(3) NOT NULL)