Typegres API Reference - v0.3.1
    Preparing search index...

    Interface SyncDriver

    interface SyncDriver {
        dialect: DialectName;
        execute: ExecuteFn;
        executeSync: ExecuteSyncFn;
        liveSeq: bigint;
        close(): Promise<void>;
        runInTransaction<T>(
            opts: TransactionOptions,
            cb: (execute: AnyExecuteFn) => Promise<T>,
        ): Promise<T>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    dialect: DialectName
    execute: ExecuteFn
    executeSync: ExecuteSyncFn
    liveSeq: bigint

    Methods