SQLite Forum

sqlite3_carray_bind and constness
Login
Because the virtual table is read-only as seen by its users from SQLite, you could just enforce const correctness in ext/misc/carray.{c,h} . Until the code supports update/insert/delete (by giving the virtual table implementation an xUpdate method), there is no reason that input cannot be treated as const.