ForUpdateOption
Clauses that perform a locking read at row-level for SELECT statements.
Samples
org.jetbrains.exposed.v1.tests.postgresql.PostgresqlTests.testForUpdateOptionsSyntaxInheritors
Types
Link copied to clipboard
Common clause that locks the rows retrieved by a SELECT statement against concurrent updates.
Link copied to clipboard
abstract class ForUpdateBase(querySuffix: String, mode: ForUpdateOption.ForUpdateOrShareMode? = null, ofTables: Table) : ForUpdateOption
Common class since this is being used by at least two DBs
Link copied to clipboard
interface ForUpdateOrShareMode
Interface that can be implemented in each database if they support modes
Link copied to clipboard
Link copied to clipboard
object PostgreSQL