executeInsertIgnore

suspend fun <T : Table> DatabaseClient<*>.executeInsertIgnore(table: T, body: T.(InsertStatement<Number>) -> Unit): Boolean(source)

Deprecated

Use `insertIgnore`

Replace with

this.insertIgnore<T>(table, body)