コード例 #1
0
ファイル: cqlr.go プロジェクト: christophe-dufour/cqlr
func (b *Binding) Query(s *gocql.Session) *gocql.Query {
	return s.Bind(b.stmt, b.bind)
}
コード例 #2
0
ファイル: cqlr.go プロジェクト: christophe-dufour/cqlr
func (b *Binding) Exec(s *gocql.Session) error {
	return s.Bind(b.stmt, b.bind).Exec()
}