InterviewSolution
Saved Bookmarks
| 1. |
Which of the following invokes functions in sql?(a) Prepared Statements(b) Connection statement(c) Callable statements(d) All of the mentionedI had been asked this question in an online interview.Origin of the question is Access SQL From a Programming Language topic in division SQL : Queries, Constraints and Triggers of Database Management |
|
Answer» CORRECT option is (c) Callable statements Easy EXPLANATION - JDBC provides a Callable Statement interface that allows INVOCATION of SQL stored procedures and functions. |
|