CreateTableStmt class

Inheritance

Constructors

CreateTableStmt(String name, List<ColumnDef> columns, {List<TableConstraint> constraints = const [], bool ifNotExists = false, bool strict = false, bool withoutRowid = false, bool usingPaged = false})

Properties

columns List<ColumnDef>
final
constraints List<TableConstraint>
final
hashCode int
The hash code for this object.
no setterinherited
ifNotExists bool
final
name String
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
strict bool
final
usingPaged bool
True for CREATE TABLE name (...) USING paged. Routes the table to the out-of-core PagedTable backend instead of the in-memory Table store. Restricts the supported query surface (see Database._executePagedStmt).
final
withoutRowid bool
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited