README ¶ go-bigquery A set of helper functions to communicate with Google Bigquery. This is not an SDK, it's just a few wrapper functions. Disclaimer This repository is neither guaranteed to be stable nor safe. Feel free to copy & fork, but do not rely on it for production. Expand ▾ Collapse ▴ Documentation ¶ Index ¶ Variables func Init(project string) (err error) func Insert(rows Rows, dataset string, table string) error func Query(query string, params *[]bigquery.QueryParameter) (*bigquery.RowIterator, error) type Row type Rows Constants ¶ This section is empty. Variables ¶ View Source var Authfile string Functions ¶ func Init ¶ func Init(project string) (err error) func Insert ¶ func Insert(rows Rows, dataset string, table string) error func Query ¶ func Query(query string, params *[]bigquery.QueryParameter) (*bigquery.RowIterator, error) Types ¶ type Row ¶ type Row struct { Gid string `bigquery:"gid"` CreatedAt civil.DateTime `bigquery:"created_at"` } type Rows ¶ type Rows []Row Source Files ¶ View all Source files biquery.go Click to show internal directories. Click to hide internal directories.