1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00
Files
postgres/src/interfaces/ecpg/include/sqlca.h
Bruce Momjian 80f7c41388 Here's my next patch to bring ecpg to version 1.1. It now correctly
handles all transaction commands and the exec sql include command.

Michael Meskes
1998-03-20 03:08:11 +00:00

24 lines
239 B
C

#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