an ORM-free SQL experience
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

add placeholder func for prepared queries

Signed-off-by: oppiliappan <me@oppi.li>

oppi.li 1e5426c6 4be9bb62

verified
+6
+6
query.go
··· 6 6 "strings" 7 7 ) 8 8 9 + // use with prepared statements 10 + func Placeholder[T any]() T { 11 + var zero T 12 + return zero 13 + } 14 + 9 15 type op string 10 16 11 17 type Expr struct {