PreparedStatement 、Connection接口和Statement接口
PreparedStatement基本用法PreparedStatement提供的功能:1、允许sql语句中使用?占位符,表示参数2、支持预编译功能3、在一定程序上可以避免sql注入漏洞查询所有的姓yan,年龄18岁以上男学生Connection接口Statement createStatement() 创建用于执行SQL语句的Statement对象PreparedStatement prepareStatement(String sql)创建PrepareStatement对象,