http://www.sqlite.org/c3ref/c_source_id.html says

[...] SQLite version in the format "X.Y.Z" [...]

yet shows "3.8.3.1" and later says  that SQLITE_VERSION_NUMBER is
computed using (X*1000000 + Y*1000 + Z), thus ignoring the last
version component. (SQLITE_VERSION_NUMBER = 3008003 is compatible with
the formula, as documented, and does ignore the 4th component).

Given http://www.sqlite.org/fileformat2.html#validfor, a side effect
of ignoring the 4th version component is that we cannot distinguish a
DB last accessed by x.y.z and x.y.z.t, right?

Very minor, but might be worth at least rephrasing the "in the format"
part, and explicitly mentioning that 4th when there's one is ignored
in SQLITE_VERSION_NUMBER. Thanks, --DD
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to