SQlite updating column numbers in java
问题 I have a scenario where number of columns is 2600. As mentioned in SQLite limits the maximum column supported is 2000. Now I need to update the column numbers during run time, the definition, The maximum number of columns can be lowered at run-time using the sqlite3_limit(db,SQLITE_LIMIT_COLUMN,size) interface. is not clear to me. The code I'm using is, Class.forName("org.sqlite.JDBC"); conn = DriverManager.getConnection("jdbc:sqlite:database.db"); conn.setAutoCommit(false); stmt = conn