Uses of Class
org.sqlite.SQLiteConfig.TransactionMode
-
Packages that use SQLiteConfig.TransactionMode Package Description org.sqlite org.sqlite.core -
-
Uses of SQLiteConfig.TransactionMode in org.sqlite
Fields in org.sqlite declared as SQLiteConfig.TransactionMode Modifier and Type Field Description private SQLiteConfig.TransactionMode
SQLiteConfig. transactionMode
Methods in org.sqlite that return SQLiteConfig.TransactionMode Modifier and Type Method Description static SQLiteConfig.TransactionMode
SQLiteConfig.TransactionMode. getMode(java.lang.String mode)
SQLiteConfig.TransactionMode
SQLiteConfig. getTransactionMode()
static SQLiteConfig.TransactionMode
SQLiteConfig.TransactionMode. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SQLiteConfig.TransactionMode[]
SQLiteConfig.TransactionMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.sqlite with parameters of type SQLiteConfig.TransactionMode Modifier and Type Method Description void
SQLiteConfig. setTransactionMode(SQLiteConfig.TransactionMode transactionMode)
Sets the mode that will be used to start transactions. -
Uses of SQLiteConfig.TransactionMode in org.sqlite.core
Fields in org.sqlite.core declared as SQLiteConfig.TransactionMode Modifier and Type Field Description protected SQLiteConfig.TransactionMode
CoreConnection. transactionMode
Fields in org.sqlite.core with type parameters of type SQLiteConfig.TransactionMode Modifier and Type Field Description protected static java.util.Map<SQLiteConfig.TransactionMode,java.lang.String>
CoreConnection. beginCommandMap
Methods in org.sqlite.core with parameters of type SQLiteConfig.TransactionMode Modifier and Type Method Description protected void
CoreConnection. setTransactionMode(SQLiteConfig.TransactionMode mode)
Sets the mode that will be used to start transactions on this connection.
-