Error: string or blob too big: SQLITE_TOOBIG

By default, SQLite has a maximum string length (SQLITE_MAX_LENGTH) of a gigabyte, adjustable to around 2GB (docs). I ran in to the following error while adding a row of length 2,288,921 to the new in-durable-object SQLite DB:

Error: string or blob too big: SQLITE_TOOBIG


Was this limit intentionally set to 1/500 of the default value? Is there a way of raising it?
Was this page helpful?