vertx-kuickstart-core / dev.fuelyour.vertxkuickstartcore.repositories / DeleteQuery / impl

impl

fun impl(schema: String, table: String): DeleteQuery

Provides the default implementation for DeleteQuery. Can be used as follows. Note that constant values should be passed for schema and table, as doing otherwise would risk sql injection.

Example:

class ExampleRepo: DeleteQuery<Example> by DeleteQuery.impl(schema="public", table="example")