You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Cached query results can cause phantom reads even if the serializable
182
+
transaction isolation level is set. Set this to "false" if using the
183
+
serializable isolation level.
180
184
- Oracle Net Descriptors of the form ```(DESCRIPTION=...)``` may be specified as an io.r2dbc.spi.Option having the name `oracleNetDescriptor`.
181
185
- If `oracleNetDescriptor` is specified, then it is invalid to specify any other options that might conflict with information in the descriptor, such as: `HOST`, `PORT`, `DATABASE`, and `SSL`.
182
186
- The `oracleNetDescriptor` option may appear in the query section of an R2DBC URL: `r2dbc:oracle://?oracleNetDescriptor=(DESCRIPTION=...)`
@@ -207,8 +211,9 @@ signals demand, and does not support multiple subscribers.
207
211
or Oracle JDBC Driver error message](https://docs.oracle.com/en/database/oracle/oracle-database/21/errmg/ORA-00000.html#GUID-27437B7F-F0C3-4F1F-9C6E-6780706FB0F6)
208
212
209
213
### Transactions
210
-
- READ COMMITTED is the default transaction isolation level, and is the
211
-
only level supported in this release.
214
+
- READ COMMITTED is the default transaction isolation level
215
+
- SERIALIZABLE is the only isolation level, besides READ COMMITED, that
216
+
Oracle Database supports.
212
217
- Transaction savepoints are not supported in this release.
213
218
- TransactionDefinition.LOCK_WAIT_TIMEOUT is not supported in this release.
214
219
- Oracle Database does not support a lock wait timeout that applies to all statements within a transaction.
0 commit comments