Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type CreateIndexStmt ¶
type CreateIndexStmt struct { SourceFile string SourceLine int Comments []string // -- <Comment> CreateIndex string // CREATE INDEX [IF NOT EXISTS] <Index> }
func (*CreateIndexStmt) GetSourceFile ¶
func (stmt *CreateIndexStmt) GetSourceFile() string
func (*CreateIndexStmt) GetSourceLine ¶
func (stmt *CreateIndexStmt) GetSourceLine() int
func (*CreateIndexStmt) SetCreateIndex ¶
func (stmt *CreateIndexStmt) SetCreateIndex(createIndex string)
type CreateTableColumn ¶
type CreateTableConstraint ¶
type CreateTableOption ¶
type CreateTableStmt ¶
type CreateTableStmt struct { SourceFile string SourceLine int Comments []string // -- <Comment> CreateTable string // CREATE TABLE [IF NOT EXISTS] <Table> Columns []*CreateTableColumn // ( <Column>, ... Constraints []*CreateTableConstraint // <Constraint> ) Options []*CreateTableOption // <Options>; PrimaryKey []string // PRIMARY KEY ( <Column>, ... ) }
func (*CreateTableStmt) GetSourceFile ¶
func (stmt *CreateTableStmt) GetSourceFile() string
func (*CreateTableStmt) GetSourceLine ¶
func (stmt *CreateTableStmt) GetSourceLine() int
func (*CreateTableStmt) SetCreateTable ¶
func (stmt *CreateTableStmt) SetCreateTable(createTable string)
Click to show internal directories.
Click to hide internal directories.