GPT實(shí)戰(zhàn)本地部署CPU推演模型-開(kāi)發(fā)可視化部署工具
2023-08-21 10:00 作者:每天學(xué)習(xí)n個(gè)拼課技巧 | 我要投稿
public static void testDelete() throws SQLException {
? ? ? ?// 1. 創(chuàng)建QueryRunner對(duì)象
? ? ? ?QueryRunner queryRunner = new QueryRunner(JDBCTools.getDataSource());
? ? ? ?String sql = "delete from user where id=?";
? ? ? ?queryRunner.update(sql,2000);
? ?}
? ?public static void testUpdate() throws SQLException {
? ? ? ?// 將id為5的用戶昵稱改為張飛
? ? ? ?QueryRunner queryRunner = new QueryRunner(JDBCTools.getDataSource());
? ? ? ?String sql = "update user set nickname=? where id=? ";
? ? ? ?queryRunner.update(sql,"張飛",6);
標(biāo)簽: