BUG: Decimal Values Missing from Internet Search Wizard ResultsLast reviewed: July 30, 1997Article ID: Q172155 |
The information in this article applies to:
SYMPTOMSWhen using the Internet Search Wizard to query against numeric data in FoxPro tables, decimal places will be truncated in the results.
RESOLUTIONIn order for the decimal values to be displayed properly, the STR() function must be used in the SELECT statement in the IDC file. The IDC file may be edited in a text editor such as Notepad. For example, the following IDC file that was generated by the Internet Search Wizard has been modified to include the STR() function for numeric fields (Numfield1 and Numfield2):
Datasource: Template: TEST.HTX SQLStatement: +SELECT Field1, Field2, STR(Numfield1,10,2), STR(Numfield2,10,2) + FROM 'TEST' + WHERE ID = '%SearchParam%' Maxrecords: 10 STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. We are researching this bug and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce Behavior
|
Additional query words: InetWiz
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |