This commit is contained in:
2026-08-26 11:01:46 +03:00
parent 34a798d345
commit 4bd1512994
712 changed files with 538122 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
package dbr
import "strings"
// Buffer collects strings, and values that are ready to be interpolated.
// This is used internally to efficiently build SQL statement.
type Buffer interface {
WriteString(string) (int, error)
String() string
WriteValue(v ...interface{}) (err error)
Value() []interface{}
}
type buffer struct {
strings.Builder
v []interface{}
}
// NewBuffer creates a new Buffer.
func NewBuffer() Buffer {
return &buffer{}
}
func (b *buffer) WriteValue(v ...interface{}) error {
b.v = append(b.v, v...)
return nil
}
func (b *buffer) Value() []interface{} {
return b.v
}