home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Otherware
/
Otherware_1_SB_Development.iso
/
amiga
/
misc
/
sqldb.lzh
/
sqldb
/
rexxmacros
/
sqltest3.rexx
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1992-08-26
|
294 b
|
13 lines
/* sqltest3.rexx */
options results
address 'SQLserver'
'ExecSQL' 'open table footab;'
'ExecSQL' 'declare testcur cursor for select from footab;'
'ExecSQL' 'open testcur;'
'ExecSQL' 'fetch columns of testcur;'
say 'result = ' result
'ExecSQL' 'close testcur;'
'ExecSQL' 'close table footab;'