Function: sqlite-finalize

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

Signature

(sqlite-finalize SET)

Documentation

Mark this SET as being finished.

This will free the resources held by SET.

View in manual

Source Code

// Defined in /usr/src/emacs/src/sqlite.c
{
  check_sqlite (set, true);
  sqlite3_finalize (XSQLITE (set)->stmt);
  XSQLITE (set)->db = NULL;
  return Qt;
}