...
Question 14169 – NIC-NIELIT STA 2020
December 1, 2023
Theory-of-Computation
December 1, 2023
Question 14169 – NIC-NIELIT STA 2020
December 1, 2023
Theory-of-Computation
December 1, 2023

Programming

Question 190
Which of the following Interface is not supported by JDBC for connecting to Database in Java Programming language?
A
Statement Interface
B
Prepared Statement Interface
C
Callable Statement Interface
D
Database Interface
Question 190 Explanation: 
DBC connections support creating and executing statements. These may be update statements such as SQL’s CREATE, INSERT, UPDATE and DELETE, or they may be query statements such as SELECT. Additionally, stored procedures may be invoked through a JDBC connection. JDBC represents statements using one of the following classes:
1. Statement – the statement is sent to the database server each and every time.
2. PreparedStatement – the statement is cached and then the execution path is pre-determined on the database server allowing it to be executed multiple times in an efficient manner.
3. CallableStatement – used for executing stored procedures on the database.
Correct Answer: D
Question 190 Explanation: 
DBC connections support creating and executing statements. These may be update statements such as SQL’s CREATE, INSERT, UPDATE and DELETE, or they may be query statements such as SELECT. Additionally, stored procedures may be invoked through a JDBC connection. JDBC represents statements using one of the following classes:
1. Statement – the statement is sent to the database server each and every time.
2. PreparedStatement – the statement is cached and then the execution path is pre-determined on the database server allowing it to be executed multiple times in an efficient manner.
3. CallableStatement – used for executing stored procedures on the database.
0 0 votes
Article Rating
Subscribe
Notify of
0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x
error: Alert: Content selection is disabled!!