Delete
public final class Delete: CoreRepresentable
Chain call for deleting
-
The number of changed rows in the most recent call. It should be called after executing successfully
Declaration
Swift
public var changes: Int? -
The tag of the related database.
Declaration
Swift
public var tag: Tag? -
The path of the related database.
Declaration
Swift
public var path: String -
WINQ interface for SQL
Declaration
Swift
public func `where`(_ condition: Condition) -> DeleteParameters
conditionExpression convertible
Return Value
self -
WINQ interface for SQL
Declaration
Swift
public func order(by orderList: OrderBy...) -> DeleteParameters
orderListExpression convertible list
Return Value
self -
WINQ interface for SQL
Declaration
Swift
public func order(by orderList: [OrderBy]) -> DeleteParameters
orderListExpression convertible list
Return Value
self -
WINQ interface for SQL
Declaration
Swift
public func limit(from begin: Limit, to end: Limit) -> DeleteParameters
beginExpression convertible
endExpression convertible
Return Value
self -
WINQ interface for SQL
Declaration
Swift
public func limit(_ limit: Limit) -> DeleteParameters
limitExpression convertible
Return Value
self -
WINQ interface for SQL
Declaration
Swift
public func limit(_ limit: Limit, offset: Offset) -> DeleteParameters
limitExpression convertible
offsetExpression convertible
Return Value
self -
Execute the delete chain call.
Throws
ErrorDeclaration
Swift
public func execute() throws
View on GitHub
Install in Dash
Delete Class Reference