You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think, this:
stmt, _ := db.Prepare("select name from people")
defer stms.Close()
rows1, _ := stmt.Query()
rows2, _ := stmt.Query()
// do things with rows1 and rows2 in any order
is valid.
Alex