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:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1991-07-02
|
243 b
|
9 lines
/* sqltest3.rexx */
address 'SQLserver'
'ExecSQL' 'open table test;'
'ExecSQL' 'declare testcur cursor for select from test;'
'ExecSQL' 'open testcur;'
'ExecSQL' 'fetch columns of testcur;'
say 'result = ' result
'ExecSQL' 'close table test;'