updateDbDataInTable

open fun <T : DbTableData> updateDbDataInTable(data: T, tableName: String = data.tableName, schemaName: String? = defaultSchemaName): Int

Updates the table based on the supplied data. The DbData instance must be designed for the table.

Return

the number of rows updated


open fun <T : DbTableData> updateDbDataInTable(data: List<T>, tableName: String, schemaName: String? = defaultSchemaName): Int

Updates the table based on the data from the list. The DbData instance must be designed for the table.

Return

the number of rows updated