The information in this article applies to:
SUMMARYThe new SELECT ... INTO CURSOR ... NOFILTER clause causes a cursor to be created that has a corresponding physical file. MORE INFORMATIONIn previous versions of FoxPro, the following code generates an error:
The following error, 1815, is generated:
The following code was frequently used as a workaround in previous versions of FoxPro:
The extra column created by the .T. causes a physical file to be created,
which can have subsequent SELECT - SQL statements run against it.
In FoxPro 5.0, you can use the following code instead:
The NOFILTER clause forces the SELECT to create a physical file that can
have SELECT - SQL statements run against it, without adding more columns.
When the cursor is closed, the physical (temp) file is deleted. Additional query words:
Keywords : kbDatabase kbSQL kbVFp500 kbVFp600 KbDBFDBC |
Last Reviewed: December 13, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |