CIW
1D0-441 · Question #15
Consider the following stored procedure: CREATE PROCEDURE showFees AS SELECT Fee FROM ACTIVITY WHERE Fee > 0 Which Java code segment will correctly utilize this stored procedure?
The correct answer is A. CallableStatement cs =. See the full explanation below for the reasoning.
Question
Consider the following stored procedure: CREATE PROCEDURE showFees AS SELECT Fee FROM ACTIVITY WHERE Fee > 0 Which Java code segment will correctly utilize this stored procedure?
Options
- ACallableStatement cs =
- BCallableStatement cs =
- CPreparedStatement ps =
- DPreparedStatement ps =
How the community answered
(33 responses)- A79% (26)
- B3% (1)
- C6% (2)
- D12% (4)
Community Discussion
No community discussion yet for this question.