Hi all, Why create table request like 'CREATE TABLE perf1 (_id ANYANYANY, DATA1 TEXT, DATA2 TEXT);' is working well? The table is created, we can insert and delete rows. Btw, the programmer can do misprint like CREATE TABLE perf1 (_id INTEGERT, DATA1 TEXT, DATA2 TEXT) and everything will work well except very slow delete operations. Why there is no data type checks to avoid such misprints?
Thanks in advance, Vladimir