集册 Java 面试笔记 Statement 和 prepared statement?

Statement 和 prepared statement?

—— statement 和 prepared statement?

欢马劈雪     最近更新时间:2020-08-04 05:37:59

112

Statement每次执行sql语句,数据库都要执行sql语句的编译. 最好用于仅执行一次查询并返回结果的情形,效率高于PreparedStatement.

Prepared statements offer better performance, as they are pre-compiled. Use when you plan to use the SQL statements many times.

Prepared statements are more secure because they use bind variables, which can prevent SQL injection attack.