Documentation
    Preparing search index...

    Interface IBMiConnectionOptions

    interface IBMiConnectionOptions {
        dataSourceName?: string;
        odbcConnectionString?: string;
        password?: string;
        system?: string;
        username?: string;
    }

    Hierarchy

    • Omit<ConnectionParameters, "connectionString">
      • IBMiConnectionOptions
    Index
    dataSourceName?: string

    The ODBC "DSN" part of the connection string.

    odbcConnectionString?: string

    Any extra ODBC connection string parts to use.

    Will be prepended to the connection string parts produced by the other options.

    password?: string

    The ODBC "PWD" part of the connection string.

    system?: string

    The ODBC "SYSTEM" part of the connection string.

    username?: string

    The ODBC "UID" part of the connection string.