资 源 简 介
_Android SQLite Framework_
With this library, you will be able to manage SQLite databases in applications for the Android platform, based on both XML files and schema files (xsd).
By implementing this library in your Android application, you can perform the following tasks without the need to generate lines of java code:
Creation of Tables.
Creating Views.
Creating Triggers.
Creation of Indices.
Running bulk insert data.
This is executed by an abstract class that inherits from SQLiteOpenHelper, which reads an xml file (dbschema.xml) to be included in a folder on your android project (assets/xml). To do this, you only have to create a class that inherits from the abstract class SQLiteDBHelper, and this automatically make the creation of the database when the event onCreate is generated.
If you want the application to perform an initial load of data once created the database,