博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Intellij idea 导入 jdbc
阅读量:5332 次
发布时间:2019-06-14

本文共 1405 字,大约阅读时间需要 4 分钟。

第一步,去官网https://dev.mysql.com/downloads/connector/j/ 下载驱动程序

第二步,解压压缩包,记住路径

第三步,打开你的idea工程,打开Project Structure,Modules --->>Dependencies选中-->>点击右侧的+号——>选第一个jars or directories,找到你刚刚解压缩的位置,选中文件mysql-connector-java-5.1.42-bin.jar——>点确定

第四步,查看你的Extermal libraries

测试代码

public static void main(String[] args) {
// 驱动程序名
String driver = "com.mysql.jdbc.Driver";
// URL指向要访问的数据库名world
String url = "jdbc:mysql://127.0.0.1:3306/zhaodi";
// MySQL配置时的用户名
String user = "root";
// MySQL配置时的密码
String password = "root";
String name;
try {
// 加载驱动程序
Class.forName(driver);
// 连续数据库
Connection conn = DriverManager.getConnection(url, user, password);
if(!conn.isClosed())
System.out.println("Succeeded connecting to the Database!");
// statement用来执行SQL语句
Statement statement = conn.createStatement();
// 要执行的SQL语句
String sql = "select * from Person";
// 结果集
ResultSet rs = statement.executeQuery(sql);
while(rs.next()) {

// 选择Name这列数据          name = rs.getString("Name");          // 输出结果          System.out.println(name);          //System.out.println(rs.getString("CountryCode") + "\t" + name);      }      rs.close();       conn.close();  }  catch(ClassNotFoundException e) {      System.out.println("Sorry,can`t find the Driver!");      e.printStackTrace();  } catch(SQLException e) {      e.printStackTrace();  } catch(Exception e) {      e.printStackTrace();  }

}

转载于:https://www.cnblogs.com/zd540/p/8325113.html

你可能感兴趣的文章
redis + cookies 实现持久登入
查看>>
解决XP系统任务管理器显示不全
查看>>
Papers
查看>>
Yet another way to manage your NHibernate ISessionFactory
查看>>
【LINUX】降级安装低版本GCC,G++
查看>>
HTML: <header>标签:定义文档的页眉(介绍信息)
查看>>
如何利用ETW(Event Tracing for Windows)记录日志
查看>>
float的重要性
查看>>
高德地图Javascript API设置域名白名单
查看>>
Prism定制Region控件
查看>>
[翻译] 使用 .NET Core 3.0 创建一个 Windows 服务
查看>>
网络协议 4 - 交换机与 VLAN:办公室太复杂,我要回学校
查看>>
.net core 下监控Sql的执行语句
查看>>
.NET Core容器化@Docker
查看>>
Matlab随笔之指派问题的整数规划
查看>>
Mysql 多主一从数据备份
查看>>
从PRISM开始学WPF(九)交互Interaction?
查看>>
WPF 2D 碰撞检测
查看>>
理解newid()和newsequentialid()
查看>>
Visual Studio 2015 移动跨平台开发初体验
查看>>