home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Club Amiga de Montreal - CAM
/
CAM_CD_1.iso
/
files
/
579a.lha
/
sqldb_v1.0alpha2
/
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-11-25
|
291 b
|
11 lines
/* sqltest3.rexx */
options results
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 testcur;'*/
'ExecSQL' 'close table test;'