Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DummyTable FILE,DRIVER('ODBC', '/TURBOSQL = TRUE'),OWNER(MyOdbcConnectString),PRE(DUM),BINDABLE,THREAD
Record RECORD,PRE()
DummyDate STRING(8)
DummyDate_GRP GROUP,OVER(BUSINESS_DATE)
DummyDate_DT DATE
DummyDate_TM TIME
END
DummyNumber REAL
DummyString CSTRING(21)
END
END
CLOSE(DummyTable)
OPEN(DummyTable)
IF ERRORCODE()
MESSAGE(CLIP(ERRORFILE()) & ' : ' & ERROR() & ' [' & ERRORCODE() & ']|' & 'File Error : ' & FILEERROR() & ' [' & FILEERRORCODE() & ']','E R R O R - OPENSQL()')
RETURN
END
DummyTable{PROP:SQL} = 'ALTER USER SCOTT ACCOUNT UNLOCK'
IF ERRORCODE()
MESSAGE(CLIP(ERRORFILE()) & ' : ' & ERROR() & ' [' & ERRORCODE() & ']|' & 'File Error : ' & FILEERROR() & ' [' & FILEERRORCODE() & ']','E R R O R - PROP:SQL')
ELSE
! .... In case your query returns a result set, LOOP through rows as shown below and if not nothing ....
Row# = 0
LOOP
NEXT(DummyTable)
IF ERRORCODE() THEN BREAK.
Row# += 1
END
END
CLOSE(DummyTable)