SQLite System Functions
This page organizes some of the system functions in SQLite.
-
changes
The SQLite changes() function returns the number of rows affected by the lastINSERT
,UPDATE
, orDELETE
statement. -
last_insert_rowid
The SQLite last_insert_rowid() function returns the ROWID of the last row inserted into the database from the connection currently calling this function. -
sqlite_compileoption_get
The SQLite sqlite_compileoption_get() function returns compile-time options for the specified location used to build SQLite. -
sqlite_compileoption_used
The SQLite sqlite_compileoption_used() function checks whether SQLite was built with the specified compile-time option. -
sqlite_source_id
The SQLite sqlite_source_id() function a string representing the version of the source code used to build the current SQLite library. -
sqlite_version
The SQLite sqlite_version() function returns the version of the current SQLite server. -
total_changes
The SQLite total_changes() returns the total number of rows affected by theINSERT
,UPDATE
, andDELETE
statements since the current connection was established. -
typeof
The SQLite typeof() function returns the data type of the parameter, it will return one of these stringsnull
,integer
,real
,text
, andblob
.