mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
24 lines
239 B
C
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
|
|
|