会员可以在此提问,百战程序员老师有问必答
对大家有帮助的问答会被标记为“推荐”
看完课程过来浏览一下别人提的问题,会帮你学得更全面
截止目前,同学们一共提了 132604个问题

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");  //通过反射jar包中的Driver类来获得驱动对象
            //创建链接
            conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8","root","root");
            String sql="insert into departments values(default,'"+department_name+"',"+location_id+")";
            state=conn.createStatement();
            int flag=state.executeUpdate(sql);
            System.out.println(flag);
        } catch (Exception e) {
            e.printStackTrace();
        }finally {
            if(state!=null){
                try {
                    state.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if(conn!=null){
                try {
                    conn.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }

            }
        }
    }
    public static void main(String[] args) {
        jdbcTest test=new jdbcTest();
        test.insertDepartments("研发部",8);
    }
}

blob.png

 您好老师,按照视频中的步骤向数据库中添加数据报错,这个什么原因呢

JAVA 全系列/第三阶段:数据库编程/JDBC技术(旧) 24828楼
JAVA 全系列/第八阶段:SpringBoot与MybatisPlus/MybatisPlus 24830楼
JAVA 全系列/第十一阶段:消息中间件与高并发处理/RocketMQ(旧) 24831楼
JAVA 全系列/第七阶段:生产环境部署与协同开发/Docker 24832楼
Python 全系列/第十九阶段:数据分析-数据管理/数据分析案例_案例1_足球运动员分析 24833楼
Python 全系列/第二阶段:Python 深入与提高/GUI编程(隐藏) 24836楼
JAVA 全系列/第五阶段:JavaWeb开发/Servlet技术详解 24838楼
JAVA 全系列/第二阶段:JAVA 基础深化和提高/多线程技术 24839楼

课程分类

百战程序员微信公众号

百战程序员微信小程序

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