Is it possible to apply PRAGMA with custom name?
For example, I need apply PRAGMA plaintext_header_size = 32 which is available in SQlite3 from SQLite3MultipleCiphers project.
Existsing values of enum SQLiteConfig.Pragma doesn't contains PLAINTEXT_HEADER_SIZE.
The problem is that this PRAGMA is applied only when opening a database and its value cannot be changed later, so it is not possible to set it by a SQL query after establishing a connection. There are also other PRAGMA in SQLite3MultipleCiphers that are not in sqlite-jdbc and they are not needed for plain SQLite3.
Is it possible to apply PRAGMA with custom name?
For example, I need apply
PRAGMA plaintext_header_size = 32which is available in SQlite3 from SQLite3MultipleCiphers project.Existsing values of enum SQLiteConfig.Pragma doesn't contains PLAINTEXT_HEADER_SIZE.
The problem is that this PRAGMA is applied only when opening a database and its value cannot be changed later, so it is not possible to set it by a SQL query after establishing a connection. There are also other PRAGMA in SQLite3MultipleCiphers that are not in sqlite-jdbc and they are not needed for plain SQLite3.