PostgreSQL Source Code  git master
sqlda.h
Go to the documentation of this file.
1 #ifndef ECPG_SQLDA_H
2 #define ECPG_SQLDA_H
3 
4 #ifdef _ECPG_INFORMIX_H
5 
6 #include "sqlda-compat.h"
7 typedef struct sqlvar_compat sqlvar_t;
8 typedef struct sqlda_compat sqlda_t;
9 
10 #else
11 
12 #include "sqlda-native.h"
13 typedef struct sqlvar_struct sqlvar_t;
14 typedef struct sqlda_struct sqlda_t;
15 
16 #endif
17 
18 #endif /* ECPG_SQLDA_H */