home *** CD-ROM | disk | FTP | other *** search
/ OpenStep (Enterprise) / OpenStepENTCD.toast / OEDEPLOY / INFORMAD.Z / InformixDefines.h < prev    next >
C/C++ Source or Header  |  1996-09-09  |  549b  |  30 lines

  1. // InformixDefines.h
  2. //
  3.  
  4. typedef enum { 
  5.         Isolation_DEFAULT        = 0,
  6.         Isolation_DR            = 1,
  7.         Isolation_CR            = 2,
  8.         Isolation_CS            = 3,
  9.         Isolation_RR            = 4
  10. } InformixIsolationLevel;
  11.  
  12. #define INF_STMT_NAME_LENGTH 18
  13. #define INF_CURS_NAME_LENGTH 18
  14.  
  15. struct informix_cursor 
  16. {
  17.     char stmt_name[INF_STMT_NAME_LENGTH + 1];
  18.     char curs_name[INF_CURS_NAME_LENGTH + 1];
  19.     int sqlcode;
  20.     int stmt_type;
  21.     struct sqlda *sqlda_ptr;
  22.     int rows_processed;
  23.     BOOL lock_rows;
  24.     long last_serial;
  25.      BOOL stp_has_retvals;
  26.      int flags;
  27. };
  28.  
  29.  
  30.