BUG: Internal Consistency Error Caused by BROWSE..FREEZELast reviewed: April 30, 1996Article ID: Q123345 |
The information in this article applies to:
SYMPTOMSAfter issuing a BROWSE command that contains the FREEZE clause, the following error occurs:
Internal Consistency Error CAUSEThe FREEZE clause is referencing a field not in the database in the current work area and not fully qualified.
RESOLUTIONTo prevent the error, fully qualify fields that are not in the database located in the current work area.
STATUSMicrosoft has confirmed this to be a problem in the Microsoft products listed at the beginning of this article. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATION
Steps to Reproduce ProblemType the following commands in the Command window:
SELECT 1 CREATE CURSOR test1 (field1 C(1)) APPEND BLANK SELECT 2 CREATE CURSOR test2 (field2 C(1)) APPEND BLANK BROWSE FIELDS test2.field2, test1.field1 FREEZE field1The Internal Consistency Error will occur after entering the last command. To prevent the error from occurring, correct the BROWSE command as follows:
BROWSE FIELDS test2.field2, test1.field1 FREEZE test1.field1 |
Additional reference words: FoxWin 2.60a buglist2.60a ICE
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |