Skip to content

Instantly share code, notes, and snippets.

@thwarted
Created March 2, 2017 19:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thwarted/7f788e12e08fe898f2ccb64414b09cac to your computer and use it in GitHub Desktop.
Save thwarted/7f788e12e08fe898f2ccb64414b09cac to your computer and use it in GitHub Desktop.
an experimental query builder that might make it easier to create safe SQL using prepared statements w/ support for variable length IN expressions
package qb
import (
"fmt"
)
func placeHolders(howmany int) (s string) {
s = "?"
for ; howmany > 1; howmany-- {
s += ",?"
}
return
}
type V struct{ a interface{} }
type L []interface{}
func BuildSelect(components ...interface{}) (q string, args []interface{}) {
for _, c := range components {
if xx, ok := c.(string); ok {
q += xx + " "
} else if x, ok := c.(V); ok {
q += "? "
args = append(args, interface{}(x.a))
} else if y, ok := c.(L); ok {
q += "(" + placeHolders(len(y)) + ")"
args = append(args, y...)
}
}
return
}
func demo() {
q, args := BuildSelect(`SELECT`, V{1}, `FROM TABLE WHERE G = `, V{"hello"}, `OR Y IN `, L{999, "888", 777})
fmt.Printf("q=%v\n", q)
fmt.Printf("args=%#v\n", args)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment