Interface ISqlJetBackend
-
- All Known Implementing Classes:
SqlJetBackend
public interface ISqlJetBackendEach 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.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ISqlJetBtreegetBtree()java.lang.StringgetName()SqlJetSafetyLevelgetSafetyLevel()ISqlJetSchemagetSchema()SqlJetTransactionStategetTransactionState()
-
-
-
Method Detail
-
getName
java.lang.String getName()
-
getBtree
ISqlJetBtree getBtree()
-
getTransactionState
SqlJetTransactionState getTransactionState()
-
getSafetyLevel
SqlJetSafetyLevel getSafetyLevel()
-
getSchema
ISqlJetSchema getSchema()
-
-