一.导入jar包
1.下载jar包:https://dev.mysql.com/downloads/
2.导入
在项目文件夹下新建一个名为lib的文件夹
将下载好的jar包放入lib文件夹,然后右击lib文件夹,选择Add as Library...,然后点击ok
二.代码部分
1.加载驱动
Class.forName("com.mysql.cj.jdbc.Driver");
2.用户信息和url
String url = "jdbc:mysql://localhost:3306/数据库名?&useSSL=false&serverTimezone=UTC";
3.数据库对象Connection
Connection connection = DriverManager.getConnection(url,username,password);
4.执行数据库对象connection
Statement statement = connection.createStatement();
代码展示
package com.lofun.fuxi.JDBC;import java.sql.*;public class jdbc_used { public static void main(String[] args) throws ClassNotFoundException, SQLException { //1.加载驱动 Class.forName("com.mysql.cj.jdbc.Driver"); System.out.println( "加载驱动成功!" ); //2.用户信息和url String url = "jdbc:mysql://localhost:3306/练习?&useSSL=false&serverTimezone=UTC"; String username = "root"; //数据库用户名 String password = "123456";//数据库密码 //3.连接成功,数据库对象Connection代表数据库 Connection connection = DriverManager.getConnection(url,username,password); //4.执行SQL的对象Statement Statement statement = connection.createStatement(); String sql = "SELECT * FROM students"; ResultSet resultSet_01 = statement.executeQuery(sql);//查询的结果集,封装了所有的查询结果 statement.executeQuery()执行sql语句 while(resultSet_01.next()){ System.out.println(resultSet_01 .getObject("name"));//resultSet_01 .getObject获取指定的数据类型 }
//关闭 resultSet_01.close(); statement.close(); connection.close(); }}
原文转载:http://www.shaoqun.com/a/663720.html
败欧洲运费:https://www.ikjzd.com/w/1555
55海淘网:https://www.ikjzd.com/w/1723
一.导入jar包 1.下载jar包:https://dev.mysql.com/downloads/ 2.导入 在项目文件夹下新建一个名为lib的文件夹 将下载好的jar包放入lib文件夹,然后右击lib文件夹,选择AddasLibrary...,然后点击ok 二.代码部分 1.加载驱动 Class.forName("
epa认证:https://www.ikjzd.com/w/1769
aeo:https://www.ikjzd.com/w/2356
黄远:https://www.ikjzd.com/w/1785
和健身教练的一段情 口述我在健身房和他相识后惨遭抛弃:http://www.30bags.com/m/a/250491.html
遇到无节操跟卖,亚马逊卖家绝不能手软! :https://www.ikjzd.com/home/91555
亚马逊推新系统!欲绝杀供应商账户......:https://www.ikjzd.com/home/18258
No comments:
Post a Comment