this repo has no description
9
fork

Configure Feed

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

write readme

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

oppiliappan 134dc89d 805ffaaf

+23
+23
readme.txt
··· 1 + norm 2 + ---- 3 + 4 + norm provides helpers for query construction and row 5 + scanning for golang projects that make use of the 6 + database/sql package: 7 + 8 + db, _ := sql.Open("sqlite3", ":memory:") 9 + 10 + rows := 11 + norm.Select("*"). 12 + From("users"). 13 + Where(norm.Eq("active", true)). 14 + MustQuery(db) 15 + 16 + var users []User 17 + _ = norm.ScanAll(rows, &users) 18 + 19 + 20 + norm uses string builders to construct queries and 21 + reflection to provide a generic struct scanner. handling 22 + migrations and managing field orderings is left to the end 23 + user.