会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 132648个问题
JAVA 全系列/第三阶段:数据库编程/Oracle 数据库的使用 1321楼
JAVA 全系列/第三阶段:数据库编程/SQL 语言 1322楼

image.png

package com.bjsxt;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.sql.Statement;

public class JdbcTest {
   
   //向departments表中添加一条数据
   public void insertDepartments(String department_name,int location_id) {
      Connection conn = null;
      Statement state = null;
      try {
         //驱动注册
         Class.forName("com.mysql.jdbc.Driver");
         //创建连接
         conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8&useSSL=false","root", "123123");
         String sql = "insert into departments values(default,'"+department_name+"',"+location_id+")";
         state = conn.createStatement();
         int falg = state.executeUpdate(sql);
         System.out.println(falg);
      } catch (Exception e) {
         e.printStackTrace();
      }finally {
         if (state != null) {
            try {
               state.close();
            } catch (SQLException e) {
               e.printStackTrace();
            }
         }
         if (conn != null) {
            try {
               conn.close();
            } catch (SQLException e) {
               e.printStackTrace();
            }
         }
      }
   }

   //更新departments表中的department_id为6的数据,将部门名称修改为教学部,将location_id修改为6
   public void updateDepartments(String department_name,int location_id,int department_id){
      Connection conn = null;
      Statement state = null;
      try {
         //驱动注册
         Class.forName("com.mysql.jdbc.Driver");
         //创建连接
         conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8&useSSL=false","root", "123123");
         String sql = "update departments d set d.department_name = "+department_name+",d.location_id = "+location_id+"where d.department_id = "+department_id+"";
         state = conn.createStatement();
         int falg = state.executeUpdate(sql);
         System.out.println(falg);
      }catch (Exception e){
         e.printStackTrace();
      }finally {
         if (state != null){
            try {
               state.close();
            } catch (SQLException e) {
               e.printStackTrace();
            }
         }
         if (conn != null){
            try {
               conn.close();
            } catch (SQLException e) {
               e.printStackTrace();
            }
         }
      }
   }
   public static void main(String[] args) {
      JdbcTest test = new JdbcTest();
      //test.insertDepartments("研发部", 8);
      test.updateDepartments("教学部",6,6);
   }
}

image.png


老师,这个怎么解决?


JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 1323楼
JAVA 全系列/第三阶段:数据库编程/JDBC技术 1326楼
JAVA 全系列/第三阶段:数据库编程/SQL 语言 1327楼
JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 1328楼
JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 1329楼
JAVA 全系列/第三阶段:数据库编程/SQL 语言 1330楼
JAVA 全系列/第三阶段:数据库编程/MySQL数据库 1331楼
JAVA 全系列/第三阶段:数据库编程/SQL 语言 1333楼

老师,之前在eclipse中出现同样的错误,检查发现是配置路径有问题,现在用IDEA写出现了同样的无法加载类对象,检查发现路径没有问题,jar包也没有问题为什么报错呀,求老师解答


报错信息

image.png


源码:


jdbc.properties

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&charcterEncoding=utf-8
username=root
password=root


JdbcUtil

com.bjsxtjava.sql.*java.util.ResourceBundleJdbcUtil {
    String String String String {
        ResourceBundle bundle=ResourceBundle.()=bundle.getString()=bundle.getString()=bundle.getString()=bundle.getString(){
            Class.()} (ClassNotFoundException e) {
            e.printStackTrace()}
    }
    Connection (){
        Connection conn={
            conn= DriverManager.()} (SQLException throwables) {
            throwables.printStackTrace()}
        conn}
    (Statement state){
        {
            (state!=){
                state.close()}
        }(Exception e){
            e.printStackTrace()}
    }
    (Connection conn){
        {
            (conn!=){
                conn.close()}
        }(Exception e){
            e.printStackTrace()}
    }
    (ResultSet rs){
        {
            (rs!=){
                rs.close()}
        }(Exception e){
            e.printStackTrace()}
    }
    (Statement stateConnection connResultSet rs){
        (state)(conn)(rs)}
}


Test

com.bjsxtjava.sql.Connectionjava.sql.PreparedStatementTestJdbc {
    (String department_namelocation_id){
        Connection conn=PreparedStatement ps={
            conn=JdbcUtil.()ps=conn.prepareStatement()flat=ps.executeUpdate()System..println(flat)}(Exception e){
            e.printStackTrace()}{
            JdbcUtil.(psconn)}
    }
    (String[] args){
        TestJdbc test=TestJdbc()test.InsertDepartments()}
}




JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 1335楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园
网站维护:百战汇智(北京)科技有限公司
京公网安备 11011402011233号    京ICP备18060230号-3    营业执照    经营许可证:京B2-20212637