Kbase 16503: sqlrequest() flag parameter possible values
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  5/10/1998 |
|
sqlrequest() flag parameter possible values
ESQL sqlrequest() flag parameter - possible values
==================================================
The ESQL sqlrequest() function has a parameter flag that is
normally initialized by SQL preprocessor ( sqlcpp ). However
some users need to use ESQL without Progress sql preprocessor.
In that case the programmer needs to know possible values for
this parameter.
These are the values for v7.3 and v8:
#define HLI_SSTMT 0x0001 /* singleton request (insert) */
#define HLI_DDL 0x0002 /* DDL statement (grant, revoke,
create,...) */
#define HLI_OPNCRS 0x0004 /* Declare and open cursor request */
#define HLI_FTCHCRS 0x0008 /* fetch cursor */
#define HLI_DELCRS 0x0010 /* delete where current of cursor */
#define HLI_CLSCRS 0x0020 /* close cursor */
#define HLI_BLKSTMT 0x0040 /* block stmts (non-cursor update/delete,
select into) */
#define HLI_NXTCRS 0x0080 /* fetch next row using sqlbind() */
#define HLI_UPDCRS 0x0100 /* update where current of cursor */
--
1996-12-20
Progress Software Technical Support Note # 16503