ADBC JavaScript Driver Manager
    Preparing search index...

    Interface AdbcDatabase

    Represents an ADBC Database.

    An AdbcDatabase represents a handle to a database. This may be a single file (SQLite), a connection configuration (PostgreSQL), or an in-memory database. It holds state that is shared across multiple connections.

    interface AdbcDatabase {
        connect(): Promise<AdbcConnection>;
        close(): Promise<void>;
    }

    Implemented by

    Index

    Methods

    Methods

    • Release the database resources. After closing, the database object should not be used.

      Returns Promise<void>