OINO TS
    Preparing search index...

    Type Alias OINODbParams

    Database parameters

    type OINODbParams = {
        database: string;
        password?: string;
        port?: number;
        type: string;
        url: string;
        user?: string;
    }
    Index

    Properties

    database: string

    Name of the database

    password?: string

    Password used to authenticate

    port?: number

    TCP port of the database

    type: string

    Name of the database class (e.g. OINODbPostgresql)

    url: string

    Connection URL, either file://-path or an IP-address or an HTTP-url

    user?: string

    Username used to authenticate