parser

package
v1.0.8 Latest Latest
Warning

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

Go to latest
Published: Oct 29, 2021 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Field

type Field struct {
	Name            stringx.String
	DataBaseType    string
	DataType        string
	Comment         string
	SeqInIndex      int
	OrdinalPosition int
	ForeignKey      string
	References      string
}

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
	Comment       stringx.String
	PrimaryKey    Primary
	UniqueIndex   map[string][]*Field
	NormalIndex   map[string][]*Field
	Fields        []*Field
	MultiModelCfg model.MultiModelCfg
}

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(ddl 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