DbConnectionInfo

public class DbConnectionInfo

Describes information used to connect to a specific database server using a specific database adapter.

Attributes.

  • The name of the adapter used to interact with a specific database server.

    The name of the adapter specified here must be associated with the constructor function of a built-in adapter type or a custom adapter type by using the DbAdapterFactory.registerAdapter method or by specifying the adapter type as optional argument when creating a new DbContext or DbLocalContext.

    Declaration

    Swift

    public var adapter: String
  • Adapter-specific configuration options (optional).

    Declaration

    Swift

    public var adapterOptions: [String : Any]?
  • An adapter-specific connection string or Url containing connection details (optional). Use alternatively to or in combination with connectionOptions.

    Declaration

    Swift

    public var connectionString: String?
  • Adapter-specific connection options (optional). Use alternatively to or in combination with connectionString.

    Declaration

    Swift

    public var connectionOptions: Any?

Initializers.