Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 279 Bytes

README.md

File metadata and controls

15 lines (13 loc) · 279 Bytes

table

Buffer database/sql query results into an in-memory table.

t, err := table.NewBuffer(ctx, db, "select ID, Name from Account;")
if err != nil {
	return err
}
for _, row := range t.Rows {
	id := row.Get("ID").(int64)
	name := row.Get("Name").(string)
	// ...
}