1. jdbc 驱动名还是数据库

String driver = "com.mysql.jdbc.Driver";
//URL指向要访问的数据库名mydata
String url = "jdbc:mysql://localhost:3306/sqltestdb" 2.
数据库名
String user = "root";
//MySQL配置时的密码
String password = "123456";
3.
try {
24 //加载驱动程序
25 Class.forName(driver);
26 //1.getConnection()方法,连接MySQL数据库!!
27 con = DriverManager.getConnection(url,user,password);
28 if(!con.isClosed())
29 System.out.println("Succeeded connecting to the Database!");
30 //2.创建statement类对象,用来执行SQL语句!!
31 Statement statement = con.createStatement();
32 //要执行的SQL语句
33 String sql = "select * from emp";
34 //3.ResultSet类,用来存放获取的结果集!!
35 ResultSet rs = statement.executeQuery(sql);
36 System.out.println("-----------------");
37 System.out.println("执行结果如下所示:");
38 System.out.println("-----------------");
39 System.out.println("姓名" + "\t" + "职称");
40 System.out.println("-----------------");
41
42 String job = null;
43 String id = null;
44 while(rs.next()){
45 //获取stuname这列数据
46 job = rs.getString("job");
47 //获取stuid这列数据
48 id = rs.getString("ename");
49
50 //输出结果
51 System.out.println(id + "\t" + job);
52 }
53 rs.close();
54 con.close();
55 } catch(ClassNotFoundException e) {
56 //数据库驱动类异常处理
57 System.out.println("Sorry,can`t find the Driver!");
58 e.printStackTrace();
59 } catch(SQLException e) {
60 //数据库连接失败异常处理
61 e.printStackTrace();
62 }catch (Exception e) {
63 // TODO: handle exception
64 e.printStackTrace();
65 }finally{
66 System.out.println("数据库数据成功获取!!");
67 }
68 }
69
70 }

最新文章

  1. 第一篇blog
  2. kettle输入“去除空格类型”设置不上
  3. tslib1.4与Qt4.8.6的交叉编译与移植
  4. GeoServer 常见问题总结
  5. 禁用cookie后session是如何设置的
  6. SQL server 时间日期函数、类型转换
  7. 数据分析与R语言
  8. union 和 union all 有什么不同?
  9. JavaScript函数部分
  10. 201521123065《Java程序设计》第2周学习总结
  11. Apache Hadoop 2.9.2 的集群管理之服役和退役
  12. QEMU KVM Libvirt手册(10): KVM的各种限制
  13. shell的命令替换和命令组合
  14. bash 文件名操作 常用方法
  15. Eclipse中部署Android开发环境插件安装问题方案
  16. 【spring基础】AOP概念与动态代理详解
  17. 第三方登录:QQ登录实现(OAuth2.0)
  18. 本地chrome调试服务器node
  19. [转载]VS2013 密钥 – 所有版本
  20. info信息总结

热门文章

  1. 自定义vant ui steps组件效果实现
  2. docker build 时 alpine 无法安装软件问题的解决
  3. linux6.5 网卡绑定
  4. 【扯淡篇】SDOI2018丶一轮游丶记
  5. Linux part2(系统的相关设置变更)
  6. 【JavaWeb项目】一个众筹网站的开发(九)邮件开发
  7. php操作redis--列表篇
  8. Java Collection - PriorityQueue 优先队列
  9. Delphi GlobalAlloc、GlobalLock、GlobalUnlock、GlobalFree 函数
  10. git——commit成功后,GitHub方格不变绿