|
LibreOffice
LibreOffice 7.5 SDK API Reference
|
Modules | |
| module | com |
| module | com::sun |
| module | com::sun::star |
| the module com::sun::star is the root module of the UNO API. | |
| module | com::sun::star::sdbc |
| Database component interfaces. | |
Constant Groups | |
| constants | com::sun::star::sdbc::TransactionIsolation |
| distinguishes different possible transaction isolation levels. | |
Variables | |
| const long | NONE = 0 |
| indicates that transactions are not supported. | |
| const long | READ_UNCOMMITTED = 1 |
| Dirty reads, non-repeatable reads and phantom reads can occur. | |
| const long | READ_COMMITTED = 2 |
| Dirty reads are prevented; non-repeatable reads and phantom reads can occur. | |
| const long | REPEATABLE_READ = 4 |
| Dirty reads and non-repeatable reads are prevented; phantom reads can occur. | |
| const long | SERIALIZABLE = 8 |
| Dirty reads, non-repeatable reads and phantom reads are prevented. | |