PRB: APPEND PROCEDURES Command Generates a WarningLast reviewed: August 30, 1995Article ID: Q135907 |
The information in this article applies to:
SYMPTOMSUsing the APPEND PROCEDURES command to add more procedures to a database's Stored Procedures may generate a Warning:
WARNING: The Procedures contain compile errors. Would you like to add them anyway? CAUSEThis happens when the last line in the Stored Procedure file is missing a carriage return or the appending text file doesn't start with a carriage return. As a result, two lines are combined into one, which generates a warning message.
RESOLUTIONMake sure a carriage return is at the end of the Stored Procedures and that the appending file starts with a carriage return. For example, use this code:
procfile = '_'+SUBSTR((SYS(3),1,7)+".TXT" fchnl = FCREATE((procfile)) =FPUTS(fchnl,"") =FCLOSE(fchnl) COPY PROCEDURES TO (procfile) ADDITIVE STATUSThis behavior is by design.
MORE INFORMATION
Steps to Reproduce Behavior
PROCEDURE TEST WAIT WINDOW PROCEDURE TEST WAIT WINDOW |
Additional reference words: 3.00 VFoxWin
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |