BUG: ESQL-C: Error "Division by Zero" During PrecompilationLast reviewed: May 14, 1997Article ID: Q168525 |
The information in this article applies to:
SYMPTOMSWhile precompiling a C division expression, NSQLPREP may generate an "Integer division by zero" exception error. The 16-bit precompiler SQLPREP may generate the error "run-time error R6003 - integer divide by 0". This error may occur not only with integers, but with any numeric datatype (for example, float and so on).
WORKAROUNDTo work around this problem, ensure that there is a character string variable assignment in the program, before the division expression.
STATUSMicrosoft has confirmed this to be a problem in Microsoft Embedded SQL for C Programmer's Toolkit version 6.5. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONOther operators (such as +, -, and *) do not cause an exception error in NSQLPREP. The following is a sample code fragment that will cause the ESQL-C precompiler to generate a division by zero exception:
int main (int argc, char** argv, char** envp) { int x; EXEC SQL BEGIN DECLARE SECTION; char o[3]; EXEC SQL END DECLARE SECTION; x = 1; x = 1 / x; // causes div/0 return (0); } /* end program */The following sample code fragment will not cause the precompiler to generate an exception error because there is a character string variable assignment before the division expression:
int main (int argc, char** argv, char** envp) { int x; char string[] = ""; // character string assignment EXEC SQL BEGIN DECLARE SECTION; char o[3]; EXEC SQL END DECLARE SECTION; x = 1; x = 1 / x; // works now return (0); } /* end program */ |
Keywords : kbbug6.50 kbprg ssrvesql_c SSrvProg
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |