Name

sqlite_source_id() — Return the source identification value of the current SQLite library

Common Usage

sqlite_source_id( )

Description

The sqlite_source_id() function returns a text value consisting of the check-in identifier of the source code used to build the SQLite library. The identifier consists of a date, timestamp, and an SHA1 hash of the source from the source repository.

This SQL function is a wrapper around the C function sqlite3_sourceid(), and has all of the same limitations and conditions.

See Also

sqlite_version(), sqlite3_sourceid() [C API, Ap G]