SetRows set rows aka values for this table. Used for schema/testing.
(rows [][]driver.Value)
| 586 | |
| 587 | // SetRows set rows aka values for this table. Used for schema/testing. |
| 588 | func (m *Table) SetRows(rows [][]driver.Value) { |
| 589 | m.rows = rows |
| 590 | } |
| 591 | |
| 592 | // FieldNamesPositions List of Field Names and ordinal position in Column list |
| 593 | func (m *Table) FieldNamesPositions() map[string]int { return m.FieldPositions } |
no outgoing calls