Values adds a tuple to be inserted. The order of the tuple should match Columns.
(value ...interface{})
| 176 | // Values adds a tuple to be inserted. |
| 177 | // The order of the tuple should match Columns. |
| 178 | func (b *InsertStmt) Values(value ...interface{}) *InsertStmt { |
| 179 | b.Value = append(b.Value, value) |
| 180 | return b |
| 181 | } |
| 182 | |
| 183 | // Record adds a tuple for columns from a struct. |
| 184 | // |
no outgoing calls