Database

public enum Database: Int, ErrorCode

Database errors Database error codes are within the range of 100-199

  • The name of the database is invalid. Database names are restricted to using only the following characters: abcdefghijklmnopqrstuvwxyz0123456789_$()+-/

    Declaration

    Swift

    case invalidDatabaseName = 101
  • The file location is invalid. File locations must be local file paths.

    Declaration

    Swift

    case invalidFileLocation
  • The internal database manager could not be initialized. Likely problem with the provided file location. Ensure the file location URL is a writable device file path with sufficent available storage space.

    Declaration

    Swift

    case databaseManagerCreationFailure
  • The database could not be initialized. Likely problem with the provided file location. Ensure the file location URL is a writable device file path with sufficent available storage space.

    Declaration

    Swift

    case databaseCreationFailure