欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JDBC为什么要使用PreparedStatement而不是Statement

程序员文章站 2022-04-06 09:45:35
...

下面列出PreparedStatement的几点优势。

  1. PreparedStatement可以写动态参数化的查询
  2. PreparedStatement比 Statement 更快
  3. PreparedStatement可以防止SQL注入式攻击

 请继续阅读:http://www.importnew.com/5006.html