Uses of Class
org.sqlite.jdbc.TransactionType

Packages that use TransactionType
org.sqlite Provides the JDBC Driver class and the database access classes. 
org.sqlite.jdbc Provides the API for accessing and processing data stored in a SQLite using the JDBC. 
 

Uses of TransactionType in org.sqlite
 

Methods in org.sqlite with parameters of type TransactionType
 void Database.beginTransaction(TransactionType type)
          begin transaction.
 

Uses of TransactionType in org.sqlite.jdbc
 

Methods in org.sqlite.jdbc that return TransactionType
 TransactionType JdbcConnection.getTransactionType()
           
static TransactionType TransactionType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TransactionType[] TransactionType.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in org.sqlite.jdbc with parameters of type TransactionType
 void JdbcConnection.setTransactionType(TransactionType type)