Documentation ¶
Index ¶
- type DBColumn
- type DBFuncParam
- type DBFunction
- type DBInfo
- type DBRel
- type DBRelLeft
- type DBRelRight
- type DBRelThrough
- type DBSchema
- func (s *DBSchema) DBVersion() int
- func (s *DBSchema) Find(schema, name string) (TInfo, error)
- func (s *DBSchema) FindPath(s1, from, s2, to string) ([]TPath, error)
- func (s *DBSchema) GetAliases() map[string]DBTable
- func (s *DBSchema) GetFunctions() map[string]DBFunction
- func (s *DBSchema) GetTables() []DBTable
- func (s *DBSchema) Type() string
- type DBTable
- type RelType
- type TEdge
- type TInfo
- type TPath
- type VirtualTable
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DBColumn ¶
type DBColumn struct { Name string Key string Type string Array bool NotNull bool PrimaryKey bool UniqueKey bool FullText bool FKeySchema string FKeyTable string FKeyCol string Blocked bool Table string Schema string }
func DiscoverColumns ¶ added in v0.15.70
type DBFuncParam ¶
type DBFuncParam struct { ID int Name sql.NullString Type string }
type DBFunction ¶
type DBFunction struct { Name string Params []DBFuncParam }
func DiscoverFunctions ¶ added in v0.15.70
func DiscoverFunctions(db *sql.DB, blockList []string) ([]DBFunction, error)
type DBInfo ¶
type DBInfo struct { Version int Type string Tables []DBTable Functions []DBFunction VTables []VirtualTable // contains filtered or unexported fields }
func GetTestDBInfo ¶
func GetTestDBInfo() *DBInfo
type DBRel ¶
type DBRel struct { Type RelType Through DBRelThrough Left DBRelLeft Right DBRelRight }
type DBRelRight ¶ added in v0.15.63
type DBRelThrough ¶ added in v0.15.63
type DBSchema ¶
type DBSchema struct {
// contains filtered or unexported fields
}
func GetTestSchema ¶
func NewDBSchema ¶
func (*DBSchema) GetAliases ¶ added in v0.15.50
func (*DBSchema) GetFunctions ¶
func (s *DBSchema) GetFunctions() map[string]DBFunction
type DBTable ¶
type DBTable struct { Schema string Name string Type string Columns []DBColumn PrimaryCol DBColumn SecondaryCol DBColumn FullText []DBColumn Singular string Plural string Blocked bool // contains filtered or unexported fields }
func NewDBTable ¶ added in v0.15.70
type TEdge ¶ added in v0.15.70
type TEdge struct { Type RelType LT, RT DBTable L, R DBColumn graph.WeightedEdge }
Click to show internal directories.
Click to hide internal directories.