postgres

package
v0.0.0-...-96f772b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 7, 2016 License: MIT Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Cities = &City{}
)
View Source
var (
	Countries = &Country{}
)
View Source
var (
	Countrylanguages = &Countrylanguage{}
)

Functions

func SetDb

func SetDb(d *sqlx.DB)

Types

type City

type City struct {
	Id          int    `db:"id"`
	Name        string `db:"name"`
	Countrycode string `db:"countrycode"`
	District    string `db:"district"`
	Population  int    `db:"population"`
}

City is a generated struct from a postgres database. See github.com/alistanis/stg for more information.

func (*City) Find

func (c *City) Find(id int) (*City, error)

Find is a generated function. See github.com/alistanis/stg for more information.

func (*City) Where

func (c *City) Where(column string, arg interface{}) ([]*City, error)

Where is a generated function. See github.com/alistanis/stg for more information.

func (*City) WhereFirst

func (c *City) WhereFirst(column string, arg interface{}) (*City, error)

WhereFirst is a generated function. See github.com/alistanis/stg for more information.

func (*City) WhereIn

func (c *City) WhereIn(column string, args ...interface{}) ([]*City, error)

WhereIn is a generated function. See github.com/alistanis/stg for more information.

func (*City) WhereWithMap

func (c *City) WhereWithMap(args map[string]interface{}) ([]*City, error)

WhereWithMap is a generated function. See github.com/alistanis/stg for more information.

type Country

type Country struct {
	Code           string  `db:"code"`
	Name           string  `db:"name"`
	Continent      string  `db:"continent"`
	Region         string  `db:"region"`
	Surfacearea    float64 `db:"surfacearea"`
	Indepyear      int     `db:"indepyear"`
	Population     int     `db:"population"`
	Lifeexpectancy float64 `db:"lifeexpectancy"`
	Gnp            int     `db:"gnp"`
	Gnpold         int     `db:"gnpold"`
	Localname      string  `db:"localname"`
	Governmentform string  `db:"governmentform"`
	Headofstate    string  `db:"headofstate"`
	Capital        int     `db:"capital"`
	Code2          string  `db:"code2"`
}

Country is a generated struct from a postgres database. See github.com/alistanis/stg for more information.

func (*Country) Where

func (c *Country) Where(column string, arg interface{}) ([]*Country, error)

Where is a generated function. See github.com/alistanis/stg for more information.

func (*Country) WhereFirst

func (c *Country) WhereFirst(column string, arg interface{}) (*Country, error)

WhereFirst is a generated function. See github.com/alistanis/stg for more information.

func (*Country) WhereIn

func (c *Country) WhereIn(column string, args ...interface{}) ([]*Country, error)

WhereIn is a generated function. See github.com/alistanis/stg for more information.

func (*Country) WhereWithMap

func (c *Country) WhereWithMap(args map[string]interface{}) ([]*Country, error)

WhereWithMap is a generated function. See github.com/alistanis/stg for more information.

type Countrylanguage

type Countrylanguage struct {
	Countrycode string  `db:"countrycode"`
	Language    string  `db:"language"`
	Isofficial  bool    `db:"isofficial"`
	Percentage  float64 `db:"percentage"`
}

Countrylanguage is a generated struct from a postgres database. See github.com/alistanis/stg for more information.

func (*Countrylanguage) Where

func (c *Countrylanguage) Where(column string, arg interface{}) ([]*Countrylanguage, error)

Where is a generated function. See github.com/alistanis/stg for more information.

func (*Countrylanguage) WhereFirst

func (c *Countrylanguage) WhereFirst(column string, arg interface{}) (*Countrylanguage, error)

WhereFirst is a generated function. See github.com/alistanis/stg for more information.

func (*Countrylanguage) WhereIn

func (c *Countrylanguage) WhereIn(column string, args ...interface{}) ([]*Countrylanguage, error)

WhereIn is a generated function. See github.com/alistanis/stg for more information.

func (*Countrylanguage) WhereWithMap

func (c *Countrylanguage) WhereWithMap(args map[string]interface{}) ([]*Countrylanguage, error)

WhereWithMap is a generated function. See github.com/alistanis/stg for more information.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL