Insert
class Insert
Дополнительный класс, предоставляющий методы вставки объектов в таблицы
Functions
Link copied to clipboard
fun <T> entities(table: String, entities: Collection<T>, message: String? = null, needFail: Boolean = true): Int
fun <T> entities(schema: String?, table: String, entities: Collection<T>, message: String? = null, needFail: Boolean = true): Int
fun <T> entities(catalog: String?, schema: String?, table: String, entities: Collection<T>, message: String? = null, needFail: Boolean = true): Int
Вставка списка объектов в таблицу.
Link copied to clipboard
fun <T> entity(schema: String, table: String, entity: T, message: String? = null, needFail: Boolean = true): Int
fun <T> entity(catalog: String?, schema: String?, table: String, entity: T, message: String? = null, needFail: Boolean = true): Int
Вставка объекта в таблицу.