buildInsertSQLFromRows
buildInsertSQLFromRows(
tableName,rows):string
Defined in: db/store.ts:26
Generate an INSERT INTO … VALUES statement from pre-converted row tuples.
This is the core SQL builder used by both buildInsertSQL (with toRow)
and the chart data Worker (which receives already-converted tuples).
Returns an empty string when the batch is empty.
Parameters
Section titled “Parameters”tableName
Section titled “tableName”string
RowTuple[]
Returns
Section titled “Returns”string