goql icon indicating copy to clipboard operation
goql copied to clipboard

Super simple SQL query builder

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

``` package main import ( "database/sql" "github.com/rgamba/goql" "fmt" _ "strings" _ "testing" _ "github.com/mattn/go-sqlite3" ) type User struct { Id int64 `db:"id" pk:"true"` Username string `db:"username"` Password string `db:"password"` Email...