Docs Menu
- Introduction to Syncloop
- Quick Start Syncloop
-
API Developer Guide
-
middleware
-
pub
- adapter
- authorization
- client
- collection
- date
- docList
- file
- graphQL
- io
- json
- jwt
- math
- platform
- security
- server
- service
- specs
- sql
- string
- bytesToHexString
- bytesToString
- compare
- compareStrings
- concat
- decodeBase64
- decodeHTML
- encodeBase64
- encodeHTML
- equals
- equalsIgnoreCase
- escapeSQL
- fromXML
- htmlDecode
- htmlEncode
- indexOf
- isAlphanumeric
- isBlank
- isDate
- isEmpty
- isNumber
- length
- lookupDict
- maskString
- messageDigest
- messageFormat
- NullOrWhiteSpc
- objectToString
- padLeft
- replace
- rightPad
- stringConcat
- stringIndexOf
- stringToBytes
- subString
- TextArrayToTextString
- TextListCollector
- tokenize
- toLower
- toString
- toUpper
- trim
- urlDecode
- tenant
- util
- xml
-
pub
-
middleware
- User Guide
- FAQs
- Java Docs
- Blogs
API Developer Guide / middleware / pub / client / database / setTransactionIsolationLevel
Service: setTransactionIsolationLevel
Set the isolation for a particular transaction. Use the isolation level as follow:
1. TRANSACTION_NONE: 0
2. TRANSACTION_READ_UNCOMMITTED: 1
3. TRANSACTION_READ_COMMITTED: 2
4. TRANSACTION_REPEATABLE_READ: 4
5. TRANSACTION_SERIALIZABLE: 8
Input Parameters:
Name | Type | Description |
isolationLevel | Integer | Defines how or when the changes made by one operation become visible to others |
txConn | Object | Transaction object obtained when startCommit service. |