当前位置:   article > 正文

Java第二次作业_为某公司编写一个工资支付系统,用于计算某一类员工的月薪。该公司共有四类员工:领

为某公司编写一个工资支付系统,用于计算某一类员工的月薪。该公司共有四类员工:领
  1. <pre name="code" class="java">import java.sql.*;
  2. public class JDBCTest {
  3. public static void main(String[] args){
  4. // 驱动程序名
  5. String driver = "com.mysql.jdbc.Driver";
  6. // URL指向要访问的数据库名scutcs
  7. String url = "jdbc:mysql://127.0.0.1:3306/student";
  8. // MySQL配置时的用户名
  9. String user = "root";
  10. // MySQL配置时的密码
  11. String password = "1681691689";
  12. try {
  13. // 加载驱动程序
  14. Class.forName(driver);
  15. // 连续数据库
  16. Connection conn = DriverManager.getConnection(url, user, password);
  17. if(!conn.isClosed())
  18. System.out.println("Succeeded connecting to the Database!");
  19. // statement用来执行SQL语句
  20. Statement stmt = conn.createStatement();
  21. // 要执行的SQL语句
  22. ResultSet rs =stmt.executeQuery( "select * from class1");
  23. while(rs.next()) {
  24. System.out.println(rs.getString("id") + "\t" + rs.getString("name") + "\t" + rs.getString("sex"));
  25. }
  26. rs.close();
  27. stmt.close();
  28. } catch(ClassNotFoundException e) {
  29. System.out.println("Sorry,can`t find the Driver!");
  30. e.printStackTrace();
  31. } catch(SQLException e) {
  32. e.printStackTrace();
  33. } catch(Exception e) {
  34. e.printStackTrace();
  35. }
  36. }
  37. }

 

 
 

                
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号