JDBC为什么要使用PreparedStatement而不是Statement
程序员文章站
2022-04-06 09:45:35
...
下面列出PreparedStatement的几点优势。
- PreparedStatement可以写动态参数化的查询
- PreparedStatement比 Statement 更快
- PreparedStatement可以防止SQL注入式攻击
上一篇: 注解apt工具示例程序
下一篇: java数据库连接