Multiple choice technology platforms and products

In SQLite database, there is a strict type checking when assigning or extracting values from each column within a row.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

SQLite uses dynamic typing (manifest typing) by default, meaning that a value's datatype is associated with the value itself, not its column. You can store any datatype in any column, meaning strict type checking is not enforced, making the statement false.