sqlite_version

Savigo
You organize your data. Now organize your savings.
Set savings goals, track your progress, and stay on course.
Get Savigo for iPhone 

The sqlite_version() function returns the text represented the version number of the SQLite library e.g., 3.8.10.

The sqlite_version is an SQL wrapper of the sqlite3_libversion() C-interface.

Syntax #

sqlite_version()

Arguments #

The sqlite_version takes no arguments.

Return Type #

TEXT

Examples #

The following statement returns the current version of the SQLite library:

SELECT sqlite_version() AS version;
version
-------
3.8.10

Was this tutorial helpful?