Instance Property
sharedSelectLockExpression
A serialization for
SQLLockingClause.share.var sharedSelectLockExpression: (any SQLExpression)? { get }
Discussion
Represents a request for a shared “reader” lock on rows retrieved by a SELECT query. A nil value signals that the dialect doesn’t support shared locking requests, in which cas the locking clause is silently ignored.
Defaults to nil.
Default Implementations
SQLDialect Implementations
var sharedSelectLockExpression: (any SQLExpression)?Default implementation ofsharedSelectLockExpression.
See Also
Syntax Indicators
var enumSyntax: SQLEnumSyntaxThe syntax the dialect supports for strongly-typed enumerations.var triggerSyntax: SQLTriggerSyntaxVarious flags describing the dialect’s support for specific features ofSQLCreateTriggerandSQLDropTriggerqueries.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 exclusiveSelectLockExpression: (any SQLExpression)?A serialization forSQLLockingClause.update.