Instance Method
run()
Execute the query on the connection, ignoring any results.
func run() -> EventLoopFuture<Void>
Discussion
Although it is a protocol requirement for historical reasons, this is considered a legacy interface thanks to its reliance on EventLoopFuture. Users should call run() whenever possible.
Default Implementations
SQLQueryBuilder Implementations
func run() -> EventLoopFuture<Void>Execute the query associated with the builder on the builder’s database, ignoring any results.func run() async throwsExecute the query associated with the builder on the builder’s database, ignoring any results.