Add support for INSERT statements.
This commit is contained in:
parent
d84deb8745
commit
599a8c537a
15 changed files with 586 additions and 277 deletions
|
|
@ -8,6 +8,15 @@ type SelectStatementTable struct {
|
|||
alias string
|
||||
}
|
||||
|
||||
// Returns the tableName's name in the database
|
||||
func (t *SelectStatementTable) SchemaName() string {
|
||||
return ""
|
||||
}
|
||||
|
||||
func (s *SelectStatementTable) TableName() string {
|
||||
return s.alias
|
||||
}
|
||||
|
||||
func (s *SelectStatementTable) Columns() []Column {
|
||||
return s.columns
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue