Values adds a single row's values to the query.
(values ...interface{})
| 253 | |
| 254 | // Values adds a single row's values to the query. |
| 255 | func (b InsertBuilder) Values(values ...interface{}) InsertBuilder { |
| 256 | return builder.Append(b, "Values", values).(InsertBuilder) |
| 257 | } |
| 258 | |
| 259 | // Suffix adds an expression to the end of the query |
| 260 | func (b InsertBuilder) Suffix(sql string, args ...interface{}) InsertBuilder { |
no outgoing calls