insertAllDbDataIntoTable

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

Inserts the data from the list into the supplied table tableName and schema schemaName. The DbData instances must be designed for the same table. The data instances are not updated to reflect any changes imposed by the database such as generated primary keys.

Return

the number of rows inserted