Stricter typing made optional.
It also catches incorrect or no datatypes specified on columns in the create statement which would then use blob.
https://www.sqlite.org/stricttables.html
It also catches incorrect or no datatypes specified on columns in the create statement which would then use blob.
https://www.sqlite.org/stricttables.html
Code:
#INCLUDE "sqlitening.inc" FUNCTION PBMAIN AS LONG slOpen ":memory:" 'changed so no write to disk slexe "create table t(i integer) strict" slexe "insert into t values('me')" 'error: cannot store TEXT value in INTEGER column t.i END FUNCTION
Comment