fluentsqlite v0.1.2 (2021-05-26T02:41:08Z)
Dub
Repo
ColumnDefinition
taskdesigns
sqlite
Undocumented in source.
class
ColumnDefinition :
Expression
{
Expression
name
;
ColumnType
type
;
bool
primaryKey
;
bool
unique
;
bool
autoincrement
;
bool
notNull
;
this
(Expression _name, ColumnType _type, bool _primaryKey, bool _unique, bool _autoincrement, bool _notNull);
string
render
();
}
Constructors
this
this
(Expression _name, ColumnType _type, bool _primaryKey, bool _unique, bool _autoincrement, bool _notNull)
Undocumented in source.
Members
Functions
render
string
render
()
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
autoincrement
bool
autoincrement
;
Undocumented in source.
name
Expression
name
;
Undocumented in source.
notNull
bool
notNull
;
Undocumented in source.
primaryKey
bool
primaryKey
;
Undocumented in source.
type
ColumnType
type
;
Undocumented in source.
unique
bool
unique
;
Undocumented in source.
Inherited Members
From Expression
render
string
render
()
Undocumented in source.
Meta
Source
See Implementation
taskdesigns
sqlite
classes
Column
ColumnDefinition
ConjunctionPredicate
CreateStatement
DeleteStatement
DisjunctionPredicate
DropStatement
EqualityPredicate
InsertOrReplaceStatement
InsertStatement
PatternExpression
PatternPredicate
Predicate
SQLiteFunction
ScalarExpression
SelectStatement
Setter
Setters
Sort
SortAscending
SortDescending
Star
Table
TableBuilder
TransactionStatement
UpdateStatement
enums
ColumnType
functions
escapedString
instanceof
quotedIdentifier
interfaces
Expression
Statement