diff options
Diffstat (limited to 'src/interfaces/odbc/descriptor.h')
-rw-r--r-- | src/interfaces/odbc/descriptor.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interfaces/odbc/descriptor.h b/src/interfaces/odbc/descriptor.h index 59e4212ed63..182142bf2ea 100644 --- a/src/interfaces/odbc/descriptor.h +++ b/src/interfaces/odbc/descriptor.h @@ -5,7 +5,7 @@ * * Comments: See "notice.txt" for copyright and license information. * - * $Id: descriptor.h,v 1.4 2002/04/10 08:18:54 inoue Exp $ + * $Id: descriptor.h,v 1.5 2002/05/22 05:51:03 inoue Exp $ * */ @@ -20,6 +20,7 @@ typedef struct char schema[MAX_SCHEMA_LEN + 1]; char name[MAX_TABLE_LEN + 1]; char alias[MAX_TABLE_LEN + 1]; + char updatable; } TABLE_INFO; typedef struct @@ -41,6 +42,8 @@ typedef struct char name[MAX_COLUMN_LEN + 1]; char alias[MAX_COLUMN_LEN + 1]; } FIELD_INFO; +Int4 FI_precision(const FIELD_INFO *); +Int4 FI_scale(const FIELD_INFO *); struct ARDFields_ { |