Skip to content

A driver for the go-strm Go programming language library, that provides the SELECT command. SELECT returns all rows but with only certain columns and in a certain order.

Notifications You must be signed in to change notification settings

reiver/strm-select

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

strm-select

A driver for the go-strm Go programming language library, that provides the SELECT command.

SELECT returns all rows but with only certain columns and in a certain order.

Documention

Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/strm-select

GoDoc

Example

package main

import (
	. "github.com/reiver/strm-csv"
	. "github.com/reiver/strm-select"
	. "github.com/reiver/strm-stdout"
)

func main() {
	Begin(CSV, "table.csv").
		Strm(SELECT, "time", "name").
	End(STDOUT, "tsv")
}

(Note that in that example dot imports were used.)

See Also

For more information about go-strm and for a list of other drivers, see: https://github.com/reiver/go-strm

About

A driver for the go-strm Go programming language library, that provides the SELECT command. SELECT returns all rows but with only certain columns and in a certain order.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages