SQLite3 is truly dynamically typed. To a fault:
sqlite> select count(*) from posts where external_id = 199252;
0
sqlite> select count(*) from posts where external_id = ‘199252′;
1
sqlite> select count(*) from posts where external_id = 199793;
1
sqlite> select count(*) from posts where external_id = ‘199793′;
0
One day I suppose I will find it useful to store different data types in [...]

Recent Comments