nexus-agents - v2.80.0
    Preparing search index...

    Interface ISQLiteDatabase

    Minimal interface for better-sqlite3 Database. Compatible with the better-sqlite3 package API.

    interface ISQLiteDatabase {
        exec(sql: string): void;
        prepare<T = unknown>(sql: string): ISQLiteStatement<T>;
        close(): void;
    }
    Index

    Methods