Class SynapseTable
- java.lang.Object
-
- migratedb.v1.core.internal.database.base.BaseSchemaObject
-
- migratedb.v1.core.internal.database.base.BaseTable
-
- migratedb.v1.core.internal.database.sqlserver.SQLServerTable
-
- migratedb.v1.core.internal.database.sqlserver.synapse.SynapseTable
-
- All Implemented Interfaces:
SchemaObject,Table
public class SynapseTable extends SQLServerTable
-
-
Field Summary
-
Fields inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
jdbcTemplate
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddoLock()Locks this table in this schema using a read/write pessimistic lock until the end of the current transaction.protected voiddoUnlock()For databases that require an explicit unlocking, not an implicit end-of-transaction one.-
Methods inherited from class migratedb.v1.core.internal.database.sqlserver.SQLServerTable
doExists, getDatabase, toString
-
Methods inherited from class migratedb.v1.core.internal.database.base.BaseTable
exists, exists, lock, unlock
-
Methods inherited from class migratedb.v1.core.internal.database.base.BaseSchemaObject
getName, getSchema
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface migratedb.v1.core.api.internal.database.base.SchemaObject
getName, getSchema
-
-
-
-
Method Detail
-
doLock
protected void doLock() throws SQLExceptionDescription copied from class:BaseTableLocks this table in this schema using a read/write pessimistic lock until the end of the current transaction. Note thatunlock()still needs to be called even if your database unlocks the table implicitly (in which casedoUnlock()may be a no-op) in order to maintain the lock count correctly.- Overrides:
doLockin classSQLServerTable- Throws:
SQLException- when this table in this schema could not be locked.
-
-