home *** CD-ROM | disk | FTP | other *** search
- // InformixDefines.h
- //
-
- typedef enum {
- Isolation_DEFAULT = 0,
- Isolation_DR = 1,
- Isolation_CR = 2,
- Isolation_CS = 3,
- Isolation_RR = 4
- } InformixIsolationLevel;
-
- #define INF_STMT_NAME_LENGTH 18
- #define INF_CURS_NAME_LENGTH 18
-
- struct informix_cursor
- {
- char stmt_name[INF_STMT_NAME_LENGTH + 1];
- char curs_name[INF_CURS_NAME_LENGTH + 1];
- int sqlcode;
- int stmt_type;
- struct sqlda *sqlda_ptr;
- int rows_processed;
- BOOL lock_rows;
- long last_serial;
- BOOL stp_has_retvals;
- int flags;
- };
-
-
-