Package | Description |
---|---|
org.sqlite.parser.ast |
Modifier and Type | Field | Description |
---|---|---|
List<SortedColumn> |
CreateIndex.columns |
|
List<SortedColumn> |
PrimaryKeyTableConstraint.columns |
|
List<SortedColumn> |
UniqueTableConstraint.columns |
|
List<SortedColumn> |
Delete.orderBy |
|
List<SortedColumn> |
Select.orderBy |
|
List<SortedColumn> |
Update.orderBy |
|
List<SortedColumn> |
Upsert.targets |
Constructor | Description |
---|---|
CreateIndex(boolean unique,
boolean ifNotExists,
QualifiedName idxName,
String tblName,
List<SortedColumn> columns,
Expr whereClause) |
|
Delete(With with,
QualifiedName tblName,
Indexed indexed,
Expr whereClause,
List<SortedColumn> orderBy,
Limit limit) |
|
PrimaryKeyTableConstraint(String name,
List<SortedColumn> columns,
boolean autoIncrement,
ResolveType conflictClause) |
|
Select(With with,
SelectBody body,
List<SortedColumn> orderBy,
Limit limit) |
|
UniqueTableConstraint(String name,
List<SortedColumn> columns,
ResolveType conflictClause) |
|
Upsert(List<SortedColumn> targets,
Expr targetWhere,
List<Set> sets,
Expr where) |
Copyright © 2018. All rights reserved.