diff options
author | Marc G. Fournier <scrappy@hub.org> | 1999-02-23 12:57:03 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1999-02-23 12:57:03 +0000 |
commit | fa9db42a6e59701e734cf00d2c9e21a40834ad3a (patch) | |
tree | a14f907b5d492a86f58d04f1695c7d91f1d55c48 /src/interfaces/ecpg/include | |
parent | e17d8448f27a67d78bd9808703a2d8c1fb879cc3 (diff) |
From: Michael Meskes <Michael_Meskes@topmail.de>
+
+ Son Feb 21 14:10:47 CET 1999
+
+ - Fixed variable detection in libecpg.
+
+ Mon Feb 22 19:47:45 CET 1999
+
+ - Added 'at <db_connection>' option to all commands it is apllicable
+ to. Due to changing the API of some libecpg functions this
+ requires me to increase the major version number.
+ - Synced pgc.l with scan.l.
+ - Added support for unions.
+ - Set library version to 3.0.0
+ - Set ecpg version to 3.0.0
Diffstat (limited to 'src/interfaces/ecpg/include')
-rw-r--r-- | src/interfaces/ecpg/include/ecpglib.h | 4 | ||||
-rw-r--r-- | src/interfaces/ecpg/include/ecpgtype.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaces/ecpg/include/ecpglib.h b/src/interfaces/ecpg/include/ecpglib.h index 4e1d6f9cde4..98153747f6f 100644 --- a/src/interfaces/ecpg/include/ecpglib.h +++ b/src/interfaces/ecpg/include/ecpglib.h @@ -8,8 +8,8 @@ extern "C" void ECPGdebug(int, FILE *); bool ECPGsetconn(int, const char *); bool ECPGconnect(int, const char *, const char *, const char *, const char *); - bool ECPGdo(int, char *,...); - bool ECPGtrans(int, const char *); + bool ECPGdo(int, const char *, char *,...); + bool ECPGtrans(int, const char *, const char *); bool ECPGdisconnect(int, const char *); bool ECPGprepare(int, char *, char *); bool ECPGdeallocate(int, char *); diff --git a/src/interfaces/ecpg/include/ecpgtype.h b/src/interfaces/ecpg/include/ecpgtype.h index e92220481da..8ca4d697c15 100644 --- a/src/interfaces/ecpg/include/ecpgtype.h +++ b/src/interfaces/ecpg/include/ecpgtype.h @@ -43,10 +43,10 @@ extern "C" ECPGt_varchar, ECPGt_varchar2, ECPGt_array, ECPGt_struct, + ECPGt_char_variable, ECPGt_EOIT, /* End of insert types. */ ECPGt_EORT, /* End of result types. */ - ECPGt_NO_INDICATOR, /* no indicator */ - ECPGt_char_variable + ECPGt_NO_INDICATOR /* no indicator */ }; #define IS_SIMPLE_TYPE(type) ((type) >= ECPGt_char && (type) <= ECPGt_varchar2) |