Function: sqlite-version

sqlite-version is a function defined in sqlite.c.

Signature

(sqlite-version)

Documentation

Return the version string of the SQLite library.

Signal an error if SQLite support is not available.

View in manual

Source Code

// Defined in /usr/src/emacs/src/sqlite.c
{
  if (!init_sqlite_functions ())
    error ("sqlite support is not available");
  return build_string (sqlite3_libversion ());
}