Function: sqlitep

sqlitep is a function defined in sqlite.c.

Signature

(sqlitep OBJECT)

Documentation

Say whether OBJECT is an SQlite object.

View in manual

Source Code

// Defined in /usr/src/emacs/src/sqlite.c
{
#ifdef HAVE_SQLITE3
  return SQLITE (object)? Qt: Qnil;
#else
  return Qnil;
#endif
}