FIX: Columns Properties Shows Numeric Codes Under "Data Type"Last reviewed: September 19, 1997Article ID: Q156006 |
The information in this article applies to:
SYMPTOMSProperties for table columns in Data View show numeric codes under Data Type in the Column Properties dialog box. The Type field of the same dialog box displays the text version of the column type.
CAUSEThe ODBC API SQLGetTypeInfo returns these numbers. The return code is displayed without displaying the constant name for the SQL data type (SQL_CHAR, SQL_INTEGER, and so on).
RESOLUTIONOpen the header file Sql.h, which lists the constant names for the SQL data type codes, in the MSDEV\include subdirectory. A partial list is given below:
/* Standard SQL datatypes, using ANSI type numbering */ #define SQL_CHAR 1 #define SQL_NUMERIC 2 #define SQL_DECIMAL 3 #define SQL_INTEGER 4 #define SQL_SMALLINT 5 #define SQL_FLOAT 6 #define SQL_REAL 7 #define SQL_DOUBLE 8 #define SQL_VARCHAR 12 .. STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. This problem has been fixed in Visual C++ version 5.0.
MORE INFORMATIONTo reproduce the behavior, insert a SQL Server data source connecting to the pubs sample database:
Keywords : VCEntIss kbprg Technology : kbMfc Version : 4.2 Platform : NT WINDOWS Issue type : kbprb Solution Type : kbfix |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |