BUG: SEEK Command Fails If Collate Is Set to "Machine"

Last reviewed: May 5, 1997
Article ID: Q135361
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, versions 3.0, 3.0b, 5.0, 5.0a

SYMPTOMS

When you use the SEEK command and there are trailing spaces in the seek key, the seek fails if you previously used this command:

   SET COLLATE TO "machine"

However, the seek succeeds if you previously used this command:

   SET COLLATE TO "general"

WORKAROUND

Remove the trailing spaces from the seek key.

STATUS

Microsoft 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

Code to Reproduce Problem

* Begin program * This program uses Customer.dbf found in the \Samples\Data subdirectory. * It is assumed that you have installed the sample data to the * default directory under the main VFP directory.

CLEAR CD SYS(2004) + "\samples\data" USE customer IN 0 SET COLLATE TO "machine" DO theprog SELECT classd1 USE

SET COLLATE TO "general" DO theprog

SELECT classd1 USE SELECT customer USE

PROCEDURE theprog

* This is just a simple SELECT statement to create a cursor to use * for this example. This SELECT creates a small set of records * from the Customer table and then creates a tag where the key is * concatenation of several fields.

   SELECT cust_id,company,contact,phone,SUBSTR(contact,1,1) ;
   AS flag,' ' AS done;
      FROM customer ;
      WHERE SUBSTR(contact,1,1)$"AI" ;
      INTO CURSOR classd1
   INDEX ON done + cust_id + flag TAG dcust

* Now that the cursor is created, seek a record that you know is in * the new set of records. Then report the collation sequence * and the results of the seek.

   SEEK " LAMAI A "

* Print the collation sequence that is in effect. Then if you are at * the end of file marker, you know the record was not found; in which case, * print the word "not." If not at EOF, you found the record, so print * "found."

   ?"With the collation sequence set to " + SET("collate");
    + " the record was " + IIF( EOF(),"not ","") + "found"

* End Program


Keywords : buglist3.00 buglist3.00b buglist5.00 FxprgIntl VFoxWin vfpbug5.0a kbbuglist
Version : 3.0 3.0b 5.0 5.0a
Platform : WINDOWS
Issue type : kbbug


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: May 5, 1997
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.