diff options
author | Byron Nikolaidis <byronn@insightdist.com> | 1998-06-03 20:33:45 +0000 |
---|---|---|
committer | Byron Nikolaidis <byronn@insightdist.com> | 1998-06-03 20:33:45 +0000 |
commit | 99d21d5b62a54d64b95dc915a35fb35111bbc430 (patch) | |
tree | 06f02f33d40f78fd3b73ad6d775b18fd34ffd7e4 /src/interfaces/odbc/tuple.h | |
parent | 85f91d0e8e2fa996a2c7ec629037387e1a9cfd88 (diff) | |
download | postgresql-99d21d5b62a54d64b95dc915a35fb35111bbc430.tar.gz postgresql-99d21d5b62a54d64b95dc915a35fb35111bbc430.zip |
Update odbc driver to current version V.0244
Diffstat (limited to 'src/interfaces/odbc/tuple.h')
-rw-r--r-- | src/interfaces/odbc/tuple.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/interfaces/odbc/tuple.h b/src/interfaces/odbc/tuple.h index 3d581079dff..585254edc86 100644 --- a/src/interfaces/odbc/tuple.h +++ b/src/interfaces/odbc/tuple.h @@ -1,27 +1,27 @@ -
-/* File: tuple.h
- *
- * Description: See "tuple.c"
- *
- * Important NOTE: The TupleField structure is used both to hold backend data and
- * manual result set data. The "set_" functions and the TupleNode
- * structure are only used for manual result sets by info routines.
- *
- * Comments: See "notice.txt" for copyright and license information.
- *
- */
+ +/* File: tuple.h + * + * Description: See "tuple.c" + * + * Important NOTE: The TupleField structure is used both to hold backend data and + * manual result set data. The "set_" functions and the TupleNode + * structure are only used for manual result sets by info routines. + * + * Comments: See "notice.txt" for copyright and license information. + * + */ #ifndef __TUPLE_H__ #define __TUPLE_H__ #include "psqlodbc.h" -
+ /* Used by backend data AND manual result sets */ struct TupleField_ { Int4 len; /* length of the current Tuple */ void *value; /* an array representing the value */ }; -
+ /* Used ONLY for manual result sets */ struct TupleNode_ { struct TupleNode_ *prev, *next; |