Location

public enum Location

Location of the database.

  • In memory database, when the connection closes, the database will vanish.

    Declaration

    Swift

    case inMemory
  • A temporary on-disk database, when the connection closes, it will be automatically deleted.

    Declaration

    Swift

    case temporary
  • uri

    The URI where the database is stored.

    Declaration

    Swift

    case uri(String)
  • In memory database that is shared across a connection pool

    Declaration

    Swift

    case inMemoryShared
  • The textual representation of Location.

    Declaration

    Swift

    public var description: String