1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

Change the driver so that large error messages are returned

by multiple SQLError calls.
This commit is contained in:
Hiroshi Inoue
2001-06-20 07:06:40 +00:00
parent f5d0c6cad5
commit 9c50a0047f
3 changed files with 48 additions and 4 deletions

View File

@ -218,6 +218,8 @@ struct StatementClass_
char pre_executing; /* This statement is prematurely executing */
char inaccurate_result; /* Current status is PREMATURE but
* result is inaccurate */
char errormsg_malloced; /* Current status is PREMATURE but
* result is inaccurate */
};
#define SC_get_conn(a) (a->hdbc)