For a non-ANSI database, if an UPDATE statement executes successfully,but modifies no rows in the database, what will SQLCA.SQLCODE be set to?
Answer : A
An end user wants to see how values x and y are being set in function1 and function2, and alsoneeds to know the value of z before function3 is called. Given the following:
1.MAIN
2.
3.DEFINE x, y, z SMALLINT
4.LET z = 0
5.CALL function1() RETURNING x
6.CALL function2() RETURNING y
7.IF ( y > 0 ) THEN
8.LET z = x / y
9.CALL function3 (z) RETURNING z
10.END IF
11........
12.END MAIN
Using the Informix 4GL Debugger, which sequence of steps accomplishes this?
Answer : C
Which statement uses correct syntax for the INPUT statement?
Answer : A
For a non MODE ANSI database, what is the default behavior for handling arun-time error?
Answer : B
Click the Exhibit button to view the exhibit Given the exhibit, which is the correct syntax forexecuting the INSERT statement?
Answer : E