23 lines
656 B
Go
23 lines
656 B
Go
package dbr
|
|
|
|
// Builder builds SQL in Dialect like MySQL, and PostgreSQL.
|
|
// The raw SQL and values are stored in Buffer.
|
|
//
|
|
// The core of gocraft/dbr is interpolation, which can expand ? with arbitrary SQL.
|
|
// If you need a feature that is not currently supported, you can build it
|
|
// on your own (or use Expr).
|
|
//
|
|
// To do that, the value that you wish to be expanded with ? needs to
|
|
// implement Builder.
|
|
type Builder interface {
|
|
Build(Dialect, Buffer) error
|
|
}
|
|
|
|
// BuildFunc implements Builder.
|
|
type BuildFunc func(Dialect, Buffer) error
|
|
|
|
// Build calls itself to build SQL.
|
|
func (b BuildFunc) Build(d Dialect, buf Buffer) error {
|
|
return b(d, buf)
|
|
}
|