Which amongst the following is not a valid statements type
-
Create statement
-
Prepared Statement
-
Callable Statement
-
Synchronized statement
D
Correct answer
Explanation
JDBC provides three types of statements for executing SQL: Statement (basic SQL execution), PreparedStatement (precompiled SQL with parameters), and CallableStatement (for stored procedures). "Synchronized statement" is not a JDBC concept - synchronized is a Java keyword for thread synchronization, unrelated to database operations.