Files
gocqlx/qb/insert.go

87 lines
1.8 KiB
Go
Raw Normal View History

2017-09-21 21:43:27 +02:00
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
2017-07-26 13:57:10 +02:00
package qb
// INSERT reference:
2017-07-28 10:18:38 +02:00
// https://cassandra.apache.org/doc/latest/cql/dml.html#insert
2017-07-26 13:57:10 +02:00
import (
"bytes"
)
2017-07-28 10:18:38 +02:00
// InsertBuilder builds CQL INSERT statements.
2017-07-26 13:57:10 +02:00
type InsertBuilder struct {
table string
columns columns
2017-07-26 13:57:10 +02:00
unique bool
using using
}
// Insert returns a new InsertBuilder with the given table name.
func Insert(table string) *InsertBuilder {
return &InsertBuilder{
table: table,
}
}
2017-07-28 10:18:38 +02:00
// ToCql builds the query into a CQL string and named args.
func (b *InsertBuilder) ToCql() (stmt string, names []string) {
2017-07-26 13:57:10 +02:00
cql := bytes.Buffer{}
cql.WriteString("INSERT ")
cql.WriteString("INTO ")
cql.WriteString(b.table)
cql.WriteByte(' ')
2017-07-26 13:57:10 +02:00
cql.WriteByte('(')
b.columns.writeCql(&cql)
2017-08-01 12:44:10 +02:00
names = append(names, b.columns...)
2017-07-26 13:57:10 +02:00
cql.WriteString(") ")
cql.WriteString("VALUES (")
placeholders(&cql, len(b.columns))
2017-07-26 13:57:10 +02:00
cql.WriteString(") ")
2017-08-01 12:44:10 +02:00
names = append(names, b.using.writeCql(&cql)...)
2017-07-26 13:57:10 +02:00
if b.unique {
cql.WriteString("IF NOT EXISTS ")
}
2017-08-01 12:44:10 +02:00
stmt = cql.String()
2017-07-26 13:57:10 +02:00
return
}
2017-07-28 10:18:38 +02:00
// Into sets the INTO clause of the query.
2017-07-26 13:57:10 +02:00
func (b *InsertBuilder) Into(table string) *InsertBuilder {
b.table = table
return b
}
2017-07-28 10:18:38 +02:00
// Columns adds insert columns to the query.
2017-07-26 13:57:10 +02:00
func (b *InsertBuilder) Columns(columns ...string) *InsertBuilder {
b.columns = append(b.columns, columns...)
return b
}
2017-07-28 10:18:38 +02:00
// Unique sets a IF NOT EXISTS clause on the query.
2017-07-26 13:57:10 +02:00
func (b *InsertBuilder) Unique() *InsertBuilder {
b.unique = true
return b
}
2017-07-28 10:18:38 +02:00
// Timestamp sets a USING TIMESTAMP clause on the query.
2017-08-01 12:44:10 +02:00
func (b *InsertBuilder) Timestamp() *InsertBuilder {
b.using.timestamp = true
2017-07-26 13:57:10 +02:00
return b
}
2017-07-28 10:18:38 +02:00
// TTL sets a USING TTL clause on the query.
2017-08-01 12:44:10 +02:00
func (b *InsertBuilder) TTL() *InsertBuilder {
b.using.ttl = true
2017-07-26 13:57:10 +02:00
return b
}