circu.js
    Preparing search index...

    SQLite3 database connection handle

    Index

    Constructors

    Methods

    • Set SQLite busy timeout in milliseconds.

      Parameters

      • ms: number

      Returns void

    • Number of rows changed by the most recent INSERT, UPDATE, or DELETE.

      Returns number

    • Close the database connection

      Returns void

    • Execute a SQL statement

      Parameters

      • sql: string

        The SQL statement to execute

      Returns void

    • Interrupt a pending SQLite operation on this connection.

      Returns void

    • Check if a transaction is active

      Returns boolean

      True if a transaction is active

    • Rowid of the most recent successful INSERT.

      Returns number

    • Load an extension into the database connection

      Parameters

      • file: string

        Path to the extension file

      • Optionalproc: string

        Optional entry point name

      Returns void

    • Prepare a SQL statement

      Parameters

      • sql: string

        The SQL statement to prepare

      Returns Sqlite3Stmt

      A prepared statement object