sqlf icon indicating copy to clipboard operation
sqlf copied to clipboard

sqlf generates parameterized SQL statements in Go, sprintf style

Results 1 sqlf issues
Sort by recently updated
recently updated
newest added

Check this out: ``` q := sqlf.Sprintf("SELECT * FROM repos WHERE name = $1", "github.com/keegancsmith/sqlf") fmt.Println(q.Render(sqlf.PostgresBindVar)) ``` That prints this: ``` SELECT * FROM repos WHERE name = 'github.com/keegancsmith/sqlf' ```...