diff options
author | Michael Meskes <meskes@postgresql.org> | 2003-02-17 14:06:40 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2003-02-17 14:06:40 +0000 |
commit | 244d2d67a072adec5d673681fe33b9af508dbec4 (patch) | |
tree | e02844ea8db68e7adcd0b47f177df9d1a12147e7 /src/interfaces/ecpg/include/ecpglib.h | |
parent | 72933a92c7cb3757ef71c57a2cb82b3ac3e3b929 (diff) |
Added Informix "database" command.
Diffstat (limited to 'src/interfaces/ecpg/include/ecpglib.h')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index d3da4a40559..e5c3f193151 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -49,9 +49,10 @@ bool ECPGdisconnect(int, const char *); bool ECPGprepare(int, char *, char *); bool ECPGdeallocate(int, char *); bool ECPGdeallocate_all(int); -char *ECPGprepared_statement(char *); +char *ECPGprepared_statement(char *); void ECPGlog(const char *format,...); +char *ECPGerrmsg(void); /* print an error message */ void sqlprint(void); |