@jellyfin/sdk
    Preparing search index...

    Interface CustomDatabaseOptions

    Defines the options for a custom database connector.

    interface CustomDatabaseOptions {
        ConnectionString: string;
        Options?: CustomDatabaseOption[];
        PluginAssembly: string;
        PluginName: string;
    }
    Index
    ConnectionString: string

    Gets or sets the connection string for the custom database provider.

    Gets or sets the list of extra options for the custom provider.

    PluginAssembly: string

    Gets or sets the plugin assembly to search for providers.

    PluginName: string

    Gets or sets the Plugin name to search for database providers.