diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-04-27 14:35:58 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-04-27 14:35:58 +0000 |
commit | 718430ea4019db3bcb36b51b44e08a1b2163eae8 (patch) | |
tree | fff47c69e2feed4d9a4fc263d771bf64d9279c96 /src/interfaces/ecpg/include | |
parent | 3e3477f5a4a5a784133acd8d41109c1efbcbd538 (diff) |
From: Michael Meskes <meskes@topsystem.de>
And the next update. Now you can use only parts of a struct like this:
exec sql select a into :struct.string from foo;
Diffstat (limited to 'src/interfaces/ecpg/include')
-rw-r--r-- | src/interfaces/ecpg/include/ecpgtype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/include/ecpgtype.h b/src/interfaces/ecpg/include/ecpgtype.h index 54442e6e3dd..27641df39a5 100644 --- a/src/interfaces/ecpg/include/ecpgtype.h +++ b/src/interfaces/ecpg/include/ecpgtype.h @@ -18,7 +18,7 @@ * Complex types: * VARCHAR, VARCHAR2 - Strings with length (maxlen is given in the declaration) * Arrays of simple types and of VARCHAR, VARCHAR2 (size given in declaration) - * Records build of simple types, arrays and other records. + * Records build of simple types, arrays and other structs. * * Complicating things: * typedefs and struct names! @@ -41,7 +41,7 @@ enum ECPGttype ECPGt_float, ECPGt_double, ECPGt_varchar, ECPGt_varchar2, ECPGt_array, - ECPGt_record, + ECPGt_struct, ECPGt_EOIT, /* End of insert types. */ ECPGt_EORT, /* End of result types. */ ECPGt_NO_INDICATOR /* no indicator */ |