可以为它增加对数据库的查询,添加内容,删除内容的功能吗
时间: 2024-03-25 09:36:39 浏览: 12
当然可以。这段代码已经实现了查询数据库中的数据,接下来可以根据需要添加添加或删除数据的功能。
添加数据的代码示例:
```
try {
Connection connect = DriverManager.getConnection("jdbc:mysql://localhost:3306/chaoshi","root","123456");
Statement stmt = connect.createStatement();
String sql = "INSERT INTO shuju (name, age, gender) VALUES ('Tom', 25, 'Male')";
int result = stmt.executeUpdate(sql);
System.out.println("添加数据成功!");
connect.close();
} catch (Exception e) {
System.out.println("添加数据失败!");
e.printStackTrace();
}
```
删除数据的代码示例:
```
try {
Connection connect = DriverManager.getConnection("jdbc:mysql://localhost:3306/chaoshi","root","123456");
Statement stmt = connect.createStatement();
String sql = "DELETE FROM shuju WHERE name='Tom'";
int result = stmt.executeUpdate(sql);
System.out.println("删除数据成功!");
connect.close();
} catch (Exception e) {
System.out.println("删除数据失败!");
e.printStackTrace();
}
```
以上代码仅为示例,具体根据实际需要进行修改。
阅读全文