public class ParparedStatement {
public static void main(String[] args) {
Connection conn = null;
PreparedStatement ps = null;
// --1.加载驱动
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (ClassNotFoundException e) {
e.printStackTrace(