Instance Property
triggerSyntax
Various flags describing the dialect’s support for specific features of
SQLCreateTrigger and SQLDropTrigger queries.var triggerSyntax: SQLTriggerSyntax { get }
Discussion
See SQLTriggerSyntax for more information.
Defaults to no feature flags set.
Default Implementations
SQLDialect Implementations
var triggerSyntax: SQLTriggerSyntaxDefault implementation oftriggerSyntax.
See Also
Syntax Indicators
var enumSyntax: SQLEnumSyntaxThe syntax the dialect supports for strongly-typed enumerations.var alterTableSyntax: SQLAlterTableSyntaxA description of the syntax the dialect supports forSQLAlterTablequeries.var autoIncrementClause: any SQLExpressionAn expression inserted in a column definition when a.primaryKey(autoincrement: true)constraint is specified for the column.var autoIncrementFunction: (any SQLExpression)?An expression inserted in a column definition when aSQLColumnConstraintAlgorithm.primaryKey(autoIncrement:)orSQLTableConstraintAlgorithm.primaryKey(columns:)constraint is specified for the column.var upsertSyntax: SQLUpsertSyntaxThe type ofUPSERTsyntax supported by the dialect.var sharedSelectLockExpression: (any SQLExpression)?A serialization forSQLLockingClause.share.var exclusiveSelectLockExpression: (any SQLExpression)?A serialization forSQLLockingClause.update.