JDBC对数据库的增删改查

1,获取连接

private static Connection getConn() {
    String driver = "com.mysql.jdbc.Driver";
    String url = "jdbc:mysql://localhost:3306/samp_db";
    String username = "root";
    String password = "";
    Connection conn = null;
    try {
        Class.forName(driver); //classLoader,加载对应驱动
        conn = (Connection) DriverManager.getConnection(url, username, password);
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return conn;
}
2,增

private static int insert(Student student) {
    Connection conn = getConn();
    int i = 0;
    String sql = "insert into students (Name,Sex,Age) values(?,?,?)";
    PreparedStatement pstmt;
    try {
        pstmt = (PreparedStatement) conn.prepareStatement(sql);
        pstmt.setString(1, student.getName());
        pstmt.setString(2, student.getSex());
        pstmt.setString(3, student.getAge());
        i = pstmt.executeUpdate();
        pstmt.close();
        conn.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return i;
}

3,删

private static int delete(String name) {
    Connection conn = getConn();
    int i = 0;
    String sql = "delete from students where Name='" + name + "'";
    PreparedStatement pstmt;
    try {
        pstmt = (PreparedStatement) conn.prepareStatement(sql);
        i = pstmt.executeUpdate();
        System.out.println("resutl: " + i);
        pstmt.close();
        conn.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return i;
}

4,改

private static int update(Student student) {
    Connection conn = getConn();
    int i = 0;
    String sql = "update students set Age='" + student.getAge() + "' where Name='" + student.getName() + "'";
    PreparedStatement pstmt;
    try {
        pstmt = (PreparedStatement) conn.prepareStatement(sql);
        i = pstmt.executeUpdate();
        System.out.println("resutl: " + i);
        pstmt.close();
        conn.close();
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return i;
}

5,查

private static Integer getAll() {
    Connection conn = getConn();
    String sql = "select * from students";
    PreparedStatement pstmt;
    try {
        pstmt = (PreparedStatement)conn.prepareStatement(sql);
        ResultSet rs = pstmt.executeQuery();
        int col = rs.getMetaData().getColumnCount();
        System.out.println("============================");
        while (rs.next()) {
            for (int i = 1; i <= col; i++) {
                System.out.print(rs.getString(i) + "\t");
                if ((i == 2) && (rs.getString(i).length() < 8)) {
                    System.out.print("\t");
                }
             }
            System.out.println("");
        }
            System.out.println("============================");
    } catch (SQLException e) {
        e.printStackTrace();
    }
    return null;
}
6,测试代码
public static void main(String args[]) {
    JDBCOperation.getAll();
    JDBCOperation.insert(new Student("Achilles", "Male", "14"));
    JDBCOperation.getAll();
    JDBCOperation.update(new Student("Bean", "", "7"));
    JDBCOperation.delete("Achilles");
    JDBCOperation.getAll();
}


  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
好的,以下是使用JDBC实现数据库增删改查的示例代码: 1. 连接数据库 ``` String jdbcUrl = "jdbc:mysql://localhost:3306/myDatabase"; String username = "myUsername"; String password = "myPassword"; try { Connection connection = DriverManager.getConnection(jdbcUrl, username, password); // 连接成功 } catch (SQLException e) { // 连接失败 } ``` 2. 插入数据 ``` try { String sql = "INSERT INTO myTable (column1, column2, column3) VALUES (?, ?, ?)"; PreparedStatement statement = connection.prepareStatement(sql); statement.setString(1, "value1"); statement.setInt(2, 2); statement.setDouble(3, 3.14); int rowsInserted = statement.executeUpdate(); if (rowsInserted > 0) { System.out.println("数据插入成功"); } } catch (SQLException e) { System.out.println("数据插入失败:" + e.getMessage()); } ``` 3. 更新数据 ``` try { String sql = "UPDATE myTable SET column1 = ? WHERE column2 = ?"; PreparedStatement statement = connection.prepareStatement(sql); statement.setString(1, "new value"); statement.setInt(2, 2); int rowsUpdated = statement.executeUpdate(); if (rowsUpdated > 0) { System.out.println("数据更新成功"); } } catch (SQLException e) { System.out.println("数据更新失败:" + e.getMessage()); } ``` 4. 删除数据 ``` try { String sql = "DELETE FROM myTable WHERE column2 = ?"; PreparedStatement statement = connection.prepareStatement(sql); statement.setInt(1, 2); int rowsDeleted = statement.executeUpdate(); if (rowsDeleted > 0) { System.out.println("数据删除成功"); } } catch (SQLException e) { System.out.println("数据删除失败:" + e.getMessage()); } ``` 5. 查询数据 ``` try { String sql = "SELECT * FROM myTable WHERE column2 = ?"; PreparedStatement statement = connection.prepareStatement(sql); statement.setInt(1, 2); ResultSet resultSet = statement.executeQuery(); while (resultSet.next()) { String column1Value = resultSet.getString("column1"); int column2Value = resultSet.getInt("column2"); double column3Value = resultSet.getDouble("column3"); System.out.println(column1Value + ", " + column2Value + ", " + column3Value); } } catch (SQLException e) { System.out.println("数据查询失败:" + e.getMessage()); } ``` 希望这可以帮助您使用JDBC实现数据库增删改查

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值