postgresql/src/interfaces/ecpg/include/sqlca.h

24 lines
239 B
C
Raw Normal View History

#ifndef POSTGRES_SQLCA_H
#define POSTGRES_SQLCA_H
#ifdef __cplusplus
extern "C" {
#endif
struct sqlca
{
int sqlcode;
struct
{
int sqlerrml;
char sqlerrmc[1000];
} sqlerrm;
} sqlca;
#endif
#ifdef __cplusplus
}
#endif