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-02在 Objective-C 中strong 和 retain有什么区别-icode9专业技术文章分享
- 2024-11-02NSString 中的 hasPrefix 有什么作用-icode9专业技术文章分享
- 2024-11-02在 C 和 Objective-C 中inline的用法是什么-icode9专业技术文章分享
- 2024-11-02文件掩码什么意思?-icode9专业技术文章分享
- 2024-11-02在 Git 提交之前运行 composer cs-fix 命令怎么实现-icode9专业技术文章分享
- 2024-11-02为 Composer 的 cs-fix 命令指定一个目录怎么实现-icode9专业技术文章分享
- 2024-11-02微信公众号开发中怎么获取用户的 unionid-icode9专业技术文章分享
- 2024-11-01lip-sync公司指南:一文读懂主要玩家和技术
- 2024-11-01Anthropic的新RAG方法——提升大型语言模型在特定领域的表现
- 2024-11-01UniApp 中组件的生命周期是多少-icode9专业技术文章分享