123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /*
- * Licensed Materials - Property of IBM and/or HCL
- *
- * IBM Informix Dynamic Server
- * (c) Copyright IBM Corporation 1996, 2004 All rights reserved.
- * (c) Copyright HCL Technologies Ltd. 2017. All Rights Reserved.
- *
- ***************************************************************************
- *
- * Title: sqlca.h
- * Description:
- * SQL Control Area
- *
- ***************************************************************************
- */
- #ifndef SQLCA_INCL
- #define SQLCA_INCL
- #include "ifxtypes.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef struct sqlca_s
- {
- int4 sqlcode;
- char sqlerrm[72]; /* error message parameters */
- char sqlerrp[8];
- int4 sqlerrd[6];
- /* 0 - estimated number of rows returned */
- /* 1 - serial value after insert or ISAM error code */
- /* 2 - number of rows processed */
- /* 3 - estimated cost */
- /* 4 - offset of the error into the SQL statement */
- /* 5 - rowid after insert */
- #ifdef _FGL_
- char sqlawarn[8];
- #else
- struct sqlcaw_s
- {
- char sqlwarn0; /* = W if any of sqlwarn[1-7] = W */
- char sqlwarn1; /* = W if any truncation occurred or
- database has transactions or
- no privileges revoked */
- char sqlwarn2; /* = W if a null value returned or
- ANSI database */
- char sqlwarn3; /* = W if no. in select list != no. in into list or
- turbo backend or no privileges granted */
- char sqlwarn4; /* = W if no where clause on prepared update, delete or
- incompatible float format */
- char sqlwarn5; /* = W if non-ANSI statement */
- char sqlwarn6; /* = W if server is in data replication secondary mode */
- char sqlwarn7; /* = W if database locale is different from proc_locale
- */
- } sqlwarn;
- #endif
- } ifx_sqlca_t;
- /* NOTE: 4gl assumes that the sqlwarn structure can be defined as
- * sqlawarn -- an 8 character string, because single-char
- * variables are not recognized in 4gl.
- *
- * If this structure should change, the code generated by 4gl compiler
- * must also change
- */
- #ifdef VMS
- noshare
- #endif /* VMS */
- #define SQLNOTFOUND 100
- #ifndef IFX_THREAD
- #ifndef SQLCODE
- extern struct sqlca_s sqlca;
- extern int4 SQLCODE;
- #endif /* SQLCODE */
- extern char SQLSTATE[];
- #else /* IFX_THREAD */
- extern int4 * ifx_sqlcode();
- extern struct sqlca_s * ifx_sqlca();
- #define SQLCODE (*(ifx_sqlcode()))
- #define SQLSTATE ((char *)(ifx_sqlstate()))
- #define sqlca (*(ifx_sqlca()))
- #endif /* IFX_THREAD */
- #ifdef __cplusplus
- }
- #endif
- #endif /* SQLCA_INCL */
|