parser

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2021 License: MIT Imports: 11 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
}

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
	PrimaryKey  Primary
	UniqueIndex map[string][]*Field
	NormalIndex 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(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