Classes

The following classes are available globally.

  • An implementation of SwiftKuery.Connection protocol for MySQL. Instances of MySQLConnection are NOT thread-safe and should not be shared between threads. Use MySQLThreadSafeConnection to share connection instances between multiple threads.

    See more

    Declaration

    Swift

    public class MySQLConnection: Connection
  • An implementation of query result fetcher.

    See more

    Declaration

    Swift

    public class MySQLResultFetcher: ResultFetcher
  • A thread-safe implementation of SwiftKuery.Connection protocol for MySQL. Instances of MySQLThreadSafeConnection can be safely shared between multiple threads.

    See more

    Declaration

    Swift

    public class MySQLThreadSafeConnection: MySQLConnection