创建JDBC的步骤
作者:互联网
// 1.连接驱动类 Class.forName("com.mysql.cj.jdbc.Driver"); // 2.获取连接 // 数据库用户名 String username = "root"; // 数据库密码 String password = "123456"; /* url参数用来确定连接的数据库信息: 数据库机器ip 端口号port 数据库名db_name 连接的参数,比如编解码集、时区... url格式:jdbc:mysql://ip:port/db_name?k=v参数 ,只需要了解url的组成,不需要记忆 */ String url = "jdbc:mysql://192.168.64.128:3306/test?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=Asia/Shanghai"; Connection conn = DriverManager.getConnection(url,username,password); // url错误创建链接时会出现异常 // 参数错误不会导致运行时异常 System.out.println( conn ); // 3.准备发送SQL String sql = "insert into t_person values(null,'Adair',25,'T','1383838381','硅谷');"; PreparedStatement pstm = conn.prepareStatement(sql); // 4.发送执行SQL int update = pstm.executeUpdate(); System.out.println( update ); // 5.(如果是查询语句,需要处理结果集) // 6.关闭资源 pstm.close(); conn.close();
标签:JDBC,String,url,步骤,数据库,mysql,pstm,创建,conn 来源: https://www.cnblogs.com/pyk666/p/16535059.html