MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / Command

Interface Command

ast/ast.go:23–26  ·  view source on GitHub ↗

Command - Part of sequence - represent single static command Example: SELECT * FROM Customers;

Source from the content-addressed store, hash-verified

21// Example:
22// SELECT * FROM Customers;
23type Command interface {
24 Node
25 CommandNode()
26}
27
28// Expression - Mathematical expression that is used to evaluate conditions
29//

Callers

nothing calls this directly

Implementers 11

CreateCommandast/ast.go
InsertCommandast/ast.go
SelectCommandast/ast.go
UpdateCommandast/ast.go
WhereCommandast/ast.go
JoinCommandast/ast.go
DeleteCommandast/ast.go
DropCommandast/ast.go
OrderByCommandast/ast.go
LimitCommandast/ast.go
OffsetCommandast/ast.go

Calls

no outgoing calls

Tested by

no test coverage detected