home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
InformixDefines.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-09
|
549b
|
30 lines
// 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;
};