mirror of
https://github.com/postgres/postgres.git
synced 2025-07-26 01:22:12 +03:00
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
This commit is contained in:
@ -1,6 +1,10 @@
|
||||
#ifndef POSTGRES_SQLCA_H
|
||||
#define POSTGRES_SQLCA_H
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
struct sqlca
|
||||
{
|
||||
int sqlcode;
|
||||
@ -12,3 +16,8 @@ struct sqlca
|
||||
} sqlca;
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user