jabc访问数据库-添加
2021/10/5 19:11:14
本文主要是介绍jabc访问数据库-添加,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录结构:
mysql:
此时的student表:
代码实现添加:
package demo1; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; import java.util.Scanner; public class Test2 { public static void main(String args[]){ Scanner in = new Scanner(System.in); Connection connection = null; Statement statement = null; System.out.println("请输入学号:"); int num = in.nextInt(); System.out.println("请输入姓名:"); String name = in.next(); System.out.println("请输入年龄:"); int age = in.nextInt(); try { //加载驱动 Class.forName("com.mysql.jdbc.Driver"); //建立连接 //url的格式:主协议:自协议:名称 String url = "jdbc:mysql://127.0.0.1/mysql_test?useUnicode=true&characterEncoding=utf8"; connection = DriverManager.getConnection(url,"root","13474501003"); //3.准备sql语句,Statement对象 String sql = "INSERT INTO student(sno,sname,age)VALUES("+num+",'"+name+"',"+age+")"; statement = connection.createStatement(); //4.执行 //适用于DML语句 int n=statement.executeUpdate(sql); //5.处理结果 if(n > 0){ System.out.println("添加成功!"); }else{ System.out.println("添加失败!"); } } catch (ClassNotFoundException | SQLException e) { e.printStackTrace(); }finally { try { if(statement != null) { statement.close(); } if (connection != null){ connection.close(); } }catch (SQLException throwables) { throwables.printStackTrace(); } } } }
执行成功:
在查询数据库student表添加成功:
这篇关于jabc访问数据库-添加的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-29怎么去掉UniApp中字符串的空格?-icode9专业技术文章分享
- 2024-11-29Warning: Cannot modify header information - headers already sent by 报错信息是什么?-icode9专业技术文章分享
- 2024-11-29Excel中实现拖动排序的简易教程
- 2024-11-29如何在Excel中使用拖动排序功能
- 2024-11-28阿里云 ECS课程:新手入门教程
- 2024-11-27Excel中实现拖动排序的简单教程
- 2024-11-27Rocket消息队列资料:新手入门指南
- 2024-11-27rocket消息队资料详解与入门指南
- 2024-11-27RocketMQ底层原理资料详解入门教程
- 2024-11-27RocketMQ项目开发资料:新手入门教程