home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 526.lha / sqldb_v1.0alpha / rexx / sqltest3.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1991-07-02  |  243 b   |  9 lines

  1. /* sqltest3.rexx */
  2. address 'SQLserver'
  3. 'ExecSQL' 'open table test;'
  4. 'ExecSQL' 'declare testcur cursor for select from test;'
  5. 'ExecSQL' 'open testcur;'
  6. 'ExecSQL' 'fetch columns of testcur;'
  7. say 'result = ' result
  8. 'ExecSQL' 'close table test;'
  9.