DatabaseEventKind
public enum DatabaseEventKind
A kind of database event. See the TransactionObserver protocol for more information.
-
The insertion of a row in a database table
Declaration
Swift
case insert(tableName: String)
-
The deletion of a row in a database table
Declaration
Swift
case delete(tableName: String)
-
The update of a set of columns in a database table
Declaration
Swift
case update(tableName: String, columnNames: Set<String>)
-
The impacted database table
Declaration
Swift
public var tableName: String { get }