SQLite

SQLite APIs

The sqlite module facilitates working with SQLite databases.

Classes

Database
Statement

Members

(static, constant) DatabaseSync

Alias for the Database class. https://nodejs.org/api/sqlite.html#class-databasesync

Source:

Type Definitions

Changes

Information about the executed query.

Properties:
Name Type Description
changes number | BigInt

The number of rows modified.

lastInsertRowid number | BigInt

The most recently inserted rowid.

Source:

Column

Column information for the prepared statement.

Properties:
Name Type Description
column String | null

The unaliased name of the column in the origin table.

database String | null

The unaliased name of the origin database.

name String | mull

The name assigned to the column in the result set of a SELECT statement.

table String | null

The unaliased name of the origin table.

type String | null

The declared data type of the column.

Source: