| Package | Description |
|---|---|
| org.sqlite.parser.ast |
| Modifier and Type | Field | Description |
|---|---|---|
ResolveType |
NotNullColumnConstraint.conflictClause |
|
ResolveType |
PrimaryKeyColumnConstraint.conflictClause |
|
ResolveType |
PrimaryKeyTableConstraint.conflictClause |
|
ResolveType |
UniqueColumnConstraint.conflictClause |
|
ResolveType |
UniqueTableConstraint.conflictClause |
|
ResolveType |
Insert.orConflict |
|
ResolveType |
InsertTriggerCmd.orConflict |
|
ResolveType |
Update.orConflict |
|
ResolveType |
UpdateTriggerCmd.orConflict |
|
ResolveType |
RaiseExpr.type |
| Modifier and Type | Method | Description |
|---|---|---|
ResolveType |
PrimaryKeyConstraint.getConflictClause() |
|
ResolveType |
PrimaryKeyTableConstraint.getConflictClause() |
|
static ResolveType |
ResolveType.valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static ResolveType[] |
ResolveType.values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Constructor | Description |
|---|---|
Insert(With with,
ResolveType orConflict,
QualifiedName tblName,
List<String> columns,
Select select,
Upsert upsert) |
|
InsertTriggerCmd(ResolveType orConflict,
String tblName,
List<String> columns,
Select select,
Upsert upsert) |
|
NotNullColumnConstraint(String name,
boolean nullable,
ResolveType conflictClause) |
|
PrimaryKeyColumnConstraint(String name,
SortOrder order,
ResolveType conflictClause,
boolean autoIncrement) |
|
PrimaryKeyTableConstraint(String name,
List<SortedColumn> columns,
boolean autoIncrement,
ResolveType conflictClause) |
|
RaiseExpr(ResolveType type,
String err) |
|
UniqueColumnConstraint(String name,
ResolveType conflictClause) |
|
UniqueTableConstraint(String name,
List<SortedColumn> columns,
ResolveType conflictClause) |
|
Update(With with,
ResolveType orConflict,
QualifiedName tblName,
Indexed indexed,
List<Set> sets,
Expr whereClause,
List<SortedColumn> orderBy,
Limit limit) |
|
UpdateTriggerCmd(ResolveType orConflict,
String tblName,
List<Set> sets,
Expr whereClause) |
Copyright © 2018. All rights reserved.