FIX: An incorrect result may occur when you use the SET COLLATE TO "General" command before you run certain SQL-SELECT statements in Visual FoxPro for Windows 6.0

Article ID: 281776 - View products that this article applies to.
This article was previously published under Q281776
Expand all | Collapse all

On This Page

SYMPTOMS

FIX: A problem may occur when you use the SET COLLATE TO "General" command before you run certain SQL-SELECT statements



When you use the SET COLLATE TO "General" command before you run certain SELECT-SQL statements, an incorrect result may appear.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article. This bug was corrected in the latest service pack for Visual Studio 6.0.

For additional information about Visual Studio service packs, click the following article numbers to view the articles in the Microsoft Knowledge Base:
194022 INFO: Visual Studio 6.0 Service Packs, What, Where, Why

194295 HOWTO: Tell That a Visual Studio Service Pack Is Installed
To download the latest Visual Studio service pack, visit the following Microsoft Web site:
http://msdn2.microsoft.com/en-us/vstudio/Aa718353.aspx

MORE INFORMATION

Steps to Reproduce Behavior

  1. In Visual Fox Pro, create a program.
  2. Add the following code to the program:
    SET SAFETY OFF
    SET COLLATE TO "General"
    CREATE TABLE test (nID N(5))
    FOR T=1 TO 10000
    	INSERT INTO test VALUE (T)
    ENDFOR
    SELECT * FROM test WHERE nID NOT IN (SELECT * FROM test)
    SET SAFETY ON
    ? RECCOUNT()
    CLOSE ALL
    DELETE FILE test.DBF
    					
  3. Run the program file.
Note that the SELECT-SQL statement and RECCOUNT() function return 24 records, when no records should be returned.

Properties

Article ID: 281776 - Last Review: August 7, 2007 - Revision: 2.2
APPLIES TO
  • Microsoft Visual FoxPro 6.0 Professional Edition
Keywords: 
kbbug kbcodesnippet kbdatabase kbfix kbvs600sp5fix KB281776
Retired KB Content Disclaimer
This article was written about products for which Microsoft no longer offers support. Therefore, this article is offered "as is" and will no longer be updated.

Give Feedback