• JDBC操作SQLite的工具类


    直接调用无需拼装sql

    注入依赖

        
            org.xerial
            sqlite-jdbc
            3.43.0.0
        
    
    • 1
    • 2
    • 3
    • 4
    • 5

    工具类

    
    import org.sqlite.SQLiteConnection;
    
    /**
     * @Author cpf
     * @Date 2023/9/8
     */
    import java.sql.*;
    
    public class SQLiteUtils {
        private static final String DB_FILE = "src/main/resources/database.db"; // SQLite数据库文件名
    
    
        public static void main(String[] args) throws SQLException {
            Connection conn = getConnection();
    
            //创建表
            String[] columns = new String[]{"id", "name", "age", "gender"};
            createTable(conn, "students", columns);
    
            //插入
            Object[] column = new Object[]{"name", "age", "gender"};
            Object[] values = new Object[]{"张三", "16", "汉族"};
            insertRecord(conn, "students",column, values);
    
            //查询所有记录
            ResultSet students = queryAll(conn, "students");
            while (students.next()){
                System.out.println(students.getString("name") + " | " + students.getString("age") + " | " + students.getString("gender"));
            }
    
            //查询指定字段的记录
            ResultSet resultSet = queryByColumn(conn, "students", "name");
            while (resultSet.next()){
                System.out.println("姓名: " + resultSet.getString("name"));
            }
    
            //查询指定条件的记录
            String[] column01 = new String[]{"name"};
            Object[] values01 = new Object[]{"张三"};
            ResultSet students1 = queryByCondition(conn, "students", column01, values01);
            while (students1.next()){
                System.out.println(students1.getString("name") + " | " + students1.getString("age") + " | " + students1.getString("gender"));
            }
    
            /**
             * 更新一条记录
             * @param conn 数据库连接
             * @param tableName 表名
             * @param conditionSet 更新字段的数组
             * @param conditionSetValue 更新字段的数组
             * @param conditions 条件的数组
             * @param conditionsValue 条件值的数组
             */
            String[] conditionSet = new String[]{"age"};
            Object[] conditionSetValue = new Object[]{"45"};
    
            String[] conditions = new String[]{"id"};
            Object[] conditionsValue = new Object[]{"5"};
            updateRecord(conn, "students", conditionSet, conditionSetValue, conditions, conditionsValue);
    
            //根据条件删除数据
            String[] conditions02 = new String[]{"id"};
            Object[] conditionsValue02 = new Object[]{"5"};
            deleteRecord(conn, "students", conditions02, conditionsValue02);
    
            //根据ID删除数据
            deleteRecordById(conn, "students", "4");
    
            closeConnection(conn);
        }
    
        /**
         * 创建SQLite数据库连接
         * @return 数据库连接
         */
        public static Connection getConnection() {
            Connection conn = null;
            try {
                Class.forName("org.sqlite.JDBC");
                conn = DriverManager.getConnection("jdbc:sqlite:" + DB_FILE);
            } catch (ClassNotFoundException | SQLException e) {
                e.printStackTrace();
            }
            return conn;
        }
    
        /**
         * 关闭数据库连接
         * @param conn 数据库连接
         */
        public static void closeConnection(Connection conn) {
            try {
                if (conn != null) {
                    conn.close();
                }
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 创建SQLite表
         * @param conn 数据库连接
         * @param tableName 表名
         * @param columns 列名和数据类型的数组
         */
        public static void createTable(Connection conn, String tableName, String[] columns) {
            StringBuilder sql = new StringBuilder();
            sql.append("CREATE TABLE IF NOT EXISTS ").append(tableName).append(" (");
            for (int i = 0; i < columns.length; i++) {
                sql.append(columns[i]).append(" ").append(getColumnType(columns[i]));
                if (i != columns.length - 1) {
                    sql.append(",");
                }
            }
            sql.append(")");
            try (Statement stmt = conn.createStatement()) {
                System.out.println("建表sql: " + sql.toString());
                stmt.executeUpdate(sql.toString());
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 获取列的数据类型
         * @param columnName 列名
         * @return 数据类型
         */
        private static String getColumnType(String columnName) {
            /*if (columnName.equalsIgnoreCase("id")) {
                return "INTEGER PRIMARY KEY";
            } else if (columnName.equalsIgnoreCase("name")) {
                return "TEXT";
            } else if (columnName.equalsIgnoreCase("age")) {
                return "INTEGER";
            } else if (columnName.equalsIgnoreCase("gender")) {
                return "TEXT";
            } else {
                return "TEXT";
            }*/
            if (columnName.equalsIgnoreCase("id")) {
                return "INTEGER PRIMARY KEY";
            } else {
                return "TEXT";
            }
        }
    
        /**
         * 插入一条记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param columns 字段的数组
         * @param values 值的数组
         */
        public static void insertRecord(Connection conn, String tableName, Object[] columns, Object[] values) {
            StringBuilder sql = new StringBuilder();
            sql.append("INSERT INTO ").append(tableName).append(" (");
            for (int i = 0; i < columns.length; i++) {
                sql.append(columns[i].toString()).append(",");
            }
            sql.deleteCharAt(sql.length() - 1);
            sql.append(") VALUES (");
            for (int i = 0; i < columns.length; i++) {
                sql.append("?,");
            }
            sql.deleteCharAt(sql.length() - 1);
            sql.append(")");
            System.out.println("插入: " + sql.toString());
            try (PreparedStatement pstmt = conn.prepareStatement(sql.toString())) {
                for (int i = 0; i < values.length; i++) {
                    pstmt.setObject(i + 1, values[i]);
                }
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 查询所有记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @return 查询结果
         */
        public static ResultSet queryAll(Connection conn, String tableName) {
            StringBuilder sql = new StringBuilder();
            sql.append("SELECT * FROM ").append(tableName);
            System.out.println("查询所有记录: " + sql.toString());
            try {
                Statement stmt = conn.createStatement();
                ResultSet rs = stmt.executeQuery(sql.toString());
                return rs;
            } catch (SQLException e) {
                e.printStackTrace();
            }
            return null;
        }
    
        /**
         * 查询指定字段的记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param columnName 列名
         * @return 查询结果
         */
        public static ResultSet queryByColumn(Connection conn, String tableName, String columnName) {
            StringBuilder sql = new StringBuilder();
            sql.append("SELECT ").append(columnName).append(" FROM ").append(tableName);
            try{
                Statement stmt = conn.createStatement();
                ResultSet rs = stmt.executeQuery(sql.toString());
                return rs;
            } catch (SQLException e) {
                e.printStackTrace();
            }
            return null;
        }
    
        /**
         * 查询指定条件的记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param conditions 条件字段的数组
         * @param values 条件值的数组
         * @return 查询结果
         */
        public static ResultSet queryByCondition(Connection conn, String tableName, String[] conditions, Object[] values) {
            StringBuilder sql = new StringBuilder();
            sql.append("SELECT * FROM ").append(tableName).append(" WHERE ");
            for (int i = 0; i < conditions.length; i++) {
                sql.append(conditions[i]).append("=?");
                if (i != conditions.length - 1) {
                    sql.append(" AND ");
                }
            }
            System.out.println("询指定条件的记录: " + sql.toString());
            try{
                PreparedStatement pstmt = conn.prepareStatement(sql.toString());
                for (int i = 0; i < values.length; i++) {
                    pstmt.setObject(i + 1, values[i]);
                }
                return pstmt.executeQuery();
            } catch (SQLException e) {
                e.printStackTrace();
            }
            return null;
        }
    
        /**
         * 更新一条记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param conditionSet 更新字段的数组
         * @param conditionSetValue 更新字段的数组
         * @param conditions 条件的数组
         * @param conditionsValue 条件值的数组
         */
        public static void updateRecord(Connection conn, String tableName, String[] conditionSet, Object[] conditionSetValue, String[] conditions, Object[] conditionsValue) {
            StringBuilder sql = new StringBuilder();
            sql.append("UPDATE ").append(tableName).append(" SET ");
            for (int i = 0; i < conditionSet.length; i++) {
                sql.append(conditionSet[i]).append("=?");
                if (i != conditionSet.length - 1) {
                    sql.append(",");
                }
            }
            sql.append(" WHERE ");
            for (int i = 0; i < conditions.length; i++) {
                sql.append(conditions[i]).append("=?");
                if (i != conditions.length - 1) {
                    sql.append(" AND ");
                }
            }
            try{
                System.out.println("更新一条记录: " + sql.toString());
                PreparedStatement pstmt = conn.prepareStatement(sql.toString());
                for (int i = 0; i < conditionSetValue.length; i++) {
                    pstmt.setObject(i + 1, conditionSetValue[i]);
                }
                for (int i = 0; i < conditionsValue.length; i++) {
                    pstmt.setObject(i + conditionsValue.length + 1, conditionsValue[i]);
                }
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 删除一条记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param conditions 条件的数组
         * @param conditionsValue 条件值的数组
         */
        public static void deleteRecord(Connection conn, String tableName, String[] conditions, Object[] conditionsValue) {
            StringBuilder sql = new StringBuilder();
            sql.append("DELETE FROM ").append(tableName).append(" WHERE ");
            for (int i = 0; i < conditions.length; i++) {
                sql.append(conditions[i]).append("=?");
                if (i != conditions.length - 1) {
                    sql.append(" AND ");
                }
            }
            try{
                System.out.println("根据条件删除数据: " + sql.toString());
                PreparedStatement pstmt = conn.prepareStatement(sql.toString());
                for (int i = 0; i < conditionsValue.length; i++) {
                    pstmt.setObject(i + 1, conditionsValue[i]);
                }
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    
        /**
         * 根据ID删除一条记录
         * @param conn 数据库连接
         * @param tableName 表名
         * @param id ID值
         */
        public static void deleteRecordById(Connection conn, String tableName, String id) {
            StringBuilder sql = new StringBuilder();
            sql.append("DELETE FROM ").append(tableName).append(" WHERE id=?");
    
            try{
                System.out.println("根据条件删除数据: " + sql.toString());
                PreparedStatement pstmt = conn.prepareStatement(sql.toString());
                pstmt.setString(1, id);
                pstmt.executeUpdate();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
  • 相关阅读:
    【C++杂货铺】优先级队列的使用指南与模拟实现
    使用 FastEndpoints 来垂直切割Web API的控制器方法
    Spring Cloud Alibaba-Sentinel规则
    提高工作效率的有效途径:五分钟快速学会搭建悟空CRM内网穿透
    第六章 搭建Vitest前端单元测试环境
    【mysql为什么采用b+树作为索引】
    远程直接连接 MySQL 数据库,阿里云腾讯云允许远程连接教程
    一文带你了解区块链中15种共识算法
    金仓数据库KingbaseES本地化支持(5. 字符集)
    vue3+vite+ts使用Element+Plus
  • 原文地址:https://blog.csdn.net/Cjava_math/article/details/132763635