parser

package
v1.2.6 Latest Latest
Warning

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

Go to latest
Published: Jan 8, 2022 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetSafeTable

func GetSafeTable(table *parser.Table) *parser.Table

GetSafeTable escapes the golang keywords from sql table.

func GetSafeTables

func GetSafeTables(tables []*parser.Table) []*parser.Table

GetSafeTables escapes the golang keywords from sql tables.

Types

type Field

type Field struct {
	NameOriginal    string
	Name            stringx.String
	DataType        string
	Comment         string
	SeqInIndex      int
	OrdinalPosition int
}

Field describes a table field

type KeyType

type KeyType int

KeyType types alias of int

type Primary

type Primary struct {
	Field
	AutoIncrement bool
}

Primary describes a primary key

type Table

type Table struct {
	Name        stringx.String
	Db          stringx.String
	PrimaryKey  Primary
	UniqueIndex map[string][]*Field
	Fields      []*Field
}

Table describes a mysql table

func ConvertDataType

func ConvertDataType(table *model.Table) (*Table, error)

ConvertDataType converts mysql data type into golang data type

func Parse

func Parse(filename, database string) ([]*Table, error)

Parse parses ddl into golang structure

func (*Table) ContainsTime

func (t *Table) ContainsTime() bool

ContainsTime returns true if contains golang type time.Time

Jump to

Keyboard shortcuts

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