SQLite Forum

Command Line Shell set parameter as date
Login
One workaround would be to execute this:<code>
  PRAGMA writable_schema = 1;
  CREATE TABLE temp.sqlite_parameters(key TEXT PRIMARY KEY, value) WITHOUT ROWID;
</code>before the same table is created by use of .parameter init or set. This could be done in a file named .sqliterc in one's home directory.

Another is to delete the word "ANY" from the table creation statement in the shell source and (re)build the shell.

Another is to build the shell from the [current trunk tip](https://www.sqlite.org/src/timeline), or wait until the next release.