home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
579a.lha
/
sqldb_v1.0alpha2
/
rexx
/
sqltest4.rexx
< prev
Wrap
OS/2 REXX Batch file
|
1991-11-25
|
352b
|
13 lines
/* sqltest4.rexx */
address 'SQLserver'
options results
'ExecSQL' 'open table cdlist;'
'ExecSQL' 'declare testcur cursor for select * from cdlist;'
'ExecSQL' 'open testcur;'
'ExecSQL' 'fetch columns of testcur;'
say 'result = ' result
'ExecSQL' 'fetch next of testcur;'
say 'result = ' result
'ExecSQL' 'close testcur;'
'ExecSQL' 'close table cdlist;'