Answer Posted / Nitendra Singh Thakur
PreparedStatement is a precompiled SQL statement in JDBC. It is compiled only once, but it can be reused multiple times with different values for its parameter markers (represented by the question mark symbol '?'). PreparedStatements offer benefits such as improved performance, reduced vulnerability to SQL injection attacks, and easier handling of parameters.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers