Counter

public enum Counter

Available statement counters.

  • The number of times that SQLite has stepped forward in a table as part of a full table scan

    Declaration

    Swift

    case fullscanStep
  • The number of sort operations that have occurred

    Declaration

    Swift

    case sort
  • The number of rows inserted into transient indices that were created automatically in order to help joins run faster

    Declaration

    Swift

    case autoindex
  • The number of virtual machine operations executed by the prepared statement

    Declaration

    Swift

    case vmStep
  • The number of times that the prepare statement has been automatically regenerated due to schema changes or change to bound parameters that might affect the query plan

    Declaration

    Swift

    case reprepare
  • run

    The number of times that the prepared statement has been run

    Declaration

    Swift

    case run
  • The approximate number of bytes of heap memory used to store the prepared statement

    Declaration

    Swift

    case memused