MCPcopy
hub / github.com/Masterminds/squirrel / Values

Method Values

insert.go:255–257  ·  view source on GitHub ↗

Values adds a single row's values to the query.

(values ...interface{})

Source from the content-addressed store, hash-verified

253
254// Values adds a single row's values to the query.
255func (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
260func (b InsertBuilder) Suffix(sql string, args ...interface{}) InsertBuilder {

Calls

no outgoing calls