SQLite Datatype Affinity for Literals and Bound Parameters
Issue Overview: Datatype Affinity of Literal Values and Bound Parameters in SQLite SQLite is a dynamically typed database system, which means that the datatype of a value is associated with the value itself, not with the column in which the value is stored. This design choice allows for a great deal of flexibility but can…