Interface ISqlJetBackend
-
- All Known Implementing Classes:
SqlJetBackend
public interface ISqlJetBackend
Each database file to be accessed by the system is an instance of the following structure. There are normally two of these structures in the sqlite.aDb[] array. aDb[0] is the main database file and aDb[1] is the database file used to hold temporary tables. Additional databases may be attached.- Author:
- TMate Software Ltd., Sergey Scherbina (sergey.scherbina@gmail.com)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISqlJetBtree
getBtree()
java.lang.String
getName()
SqlJetSafetyLevel
getSafetyLevel()
ISqlJetSchema
getSchema()
SqlJetTransactionState
getTransactionState()
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getBtree
ISqlJetBtree getBtree()
-
getTransactionState
SqlJetTransactionState getTransactionState()
-
getSafetyLevel
SqlJetSafetyLevel getSafetyLevel()
-
getSchema
ISqlJetSchema getSchema()
-
-