├── LICENSE ├── NOTICE ├── README.md ├── SQLite Database Model Android Demo ├── .classpath ├── .project ├── AndroidManifest.xml ├── LICENSE.txt ├── NOTICE.txt ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── SQLite Database Model Android Demo.apk │ ├── classes.dex │ ├── classes │ │ ├── android │ │ │ └── support │ │ │ │ └── v7 │ │ │ │ └── appcompat │ │ │ │ ├── R$anim.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$bool.class │ │ │ │ ├── R$color.class │ │ │ │ ├── R$dimen.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$integer.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R$style.class │ │ │ │ ├── R$styleable.class │ │ │ │ └── R.class │ │ └── za │ │ │ └── co │ │ │ └── neilson │ │ │ └── sqlite │ │ │ └── orm │ │ │ ├── android │ │ │ └── demo │ │ │ │ ├── Car.class │ │ │ │ ├── CarDatabaseModel$1.class │ │ │ │ ├── CarDatabaseModel$2.class │ │ │ │ ├── CarDatabaseModel$3.class │ │ │ │ ├── CarDatabaseModel$4.class │ │ │ │ ├── CarDatabaseModel.class │ │ │ │ ├── Engine$Fuel.class │ │ │ │ ├── Engine.class │ │ │ │ ├── MainActivity$PlaceholderFragment$1.class │ │ │ │ ├── MainActivity$PlaceholderFragment$2.class │ │ │ │ ├── MainActivity$PlaceholderFragment$3.class │ │ │ │ ├── MainActivity$PlaceholderFragment$4.class │ │ │ │ ├── MainActivity$PlaceholderFragment$5.class │ │ │ │ ├── MainActivity$PlaceholderFragment.class │ │ │ │ ├── MainActivity.class │ │ │ │ ├── Wheel.class │ │ │ │ ├── WheelNut$ThingaMaJigger$Status.class │ │ │ │ ├── WheelNut$ThingaMaJigger.class │ │ │ │ ├── WheelNut.class │ │ │ │ └── WheelNutModel.class │ │ │ └── app │ │ │ ├── BuildConfig.class │ │ │ ├── R$anim.class │ │ │ ├── R$attr.class │ │ │ ├── R$bool.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$integer.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$styleable.class │ │ │ └── R.class │ ├── dexedLibs │ │ ├── SQLiteDatabaseModelAndroid-1.0-7111977ffb3b9007dc713e2af0fc5b16.jar │ │ ├── android-support-v4-62bd44659438f1e3b341f21bf6e0dc3a.jar │ │ ├── android-support-v7-appcompat-00b9164e0111935b9f15cd587246e05b.jar │ │ ├── android-support-v7-appcompat-b6f2e052455529ea9fc8c764805cabd8.jar │ │ └── sqlite database model android-5437a3d9851c1c6bcd0ad1a6dba2c06c.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ ├── android │ │ └── support │ │ │ └── v7 │ │ │ └── appcompat │ │ │ └── R.java │ └── za │ │ └── co │ │ └── neilson │ │ └── sqlite │ │ └── orm │ │ └── app │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_main.xml │ ├── menu │ │ └── main.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ ├── values-w820dp │ │ └── dimens.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── za │ └── co │ └── neilson │ └── sqlite │ └── orm │ └── android │ └── demo │ ├── Car.java │ ├── CarDatabaseModel.java │ ├── Engine.java │ ├── MainActivity.java │ ├── Wheel.java │ ├── WheelNut.java │ └── WheelNutModel.java ├── SQLite Database Model Android ├── .classpath ├── .project ├── AndroidManifest.xml ├── LICENSE.txt ├── NOTICE.txt ├── bin │ ├── AndroidManifest.xml │ ├── classes │ │ └── za │ │ │ └── co │ │ │ └── neilson │ │ │ └── sqlite │ │ │ └── orm │ │ │ └── android │ │ │ ├── AndroidObjectModel.class │ │ │ ├── AndroidSqliteDatabaseDriverInterface.class │ │ │ └── BuildConfig.class │ └── sqlite database model android.jar ├── doc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-files │ │ ├── index-1.html │ │ ├── index-10.html │ │ ├── index-11.html │ │ ├── index-12.html │ │ ├── index-13.html │ │ ├── index-14.html │ │ ├── index-15.html │ │ ├── index-16.html │ │ ├── index-17.html │ │ ├── index-18.html │ │ ├── index-19.html │ │ ├── index-2.html │ │ ├── index-20.html │ │ ├── index-3.html │ │ ├── index-4.html │ │ ├── index-5.html │ │ ├── index-6.html │ │ ├── index-7.html │ │ ├── index-8.html │ │ └── index-9.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ ├── background.gif │ │ ├── tab.gif │ │ ├── titlebar.gif │ │ └── titlebar_end.gif │ ├── serialized-form.html │ ├── stylesheet.css │ └── za │ │ └── co │ │ └── neilson │ │ ├── collections │ │ └── queryable │ │ │ ├── Queryable.Field.html │ │ │ ├── Queryable.Matcher.html │ │ │ ├── Queryable.html │ │ │ ├── class-use │ │ │ ├── Queryable.Field.html │ │ │ ├── Queryable.Matcher.html │ │ │ └── Queryable.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ └── sqlite │ │ └── orm │ │ ├── DatabaseDriverInterface.html │ │ ├── DatabaseInfo.html │ │ ├── DatabaseModel.html │ │ ├── ObjectModel.QueryType.html │ │ ├── ObjectModel.html │ │ ├── ObjectModelColumn.html │ │ ├── Relationship.Type.html │ │ ├── Relationship.html │ │ ├── UnsupportedTypeException.html │ │ ├── android │ │ ├── AndroidObjectModel.html │ │ ├── AndroidSqliteDatabaseDriverInterface.html │ │ ├── BuildConfig.html │ │ ├── class-use │ │ │ ├── AndroidObjectModel.html │ │ │ ├── AndroidSqliteDatabaseDriverInterface.html │ │ │ └── BuildConfig.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── annotations │ │ ├── ForeignKey.html │ │ ├── Nullable.html │ │ ├── PrimaryKey.html │ │ ├── Transient.html │ │ ├── Unique.html │ │ ├── class-use │ │ │ ├── ForeignKey.html │ │ │ ├── Nullable.html │ │ │ ├── PrimaryKey.html │ │ │ ├── Transient.html │ │ │ └── Unique.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── class-use │ │ ├── DatabaseDriverInterface.html │ │ ├── DatabaseInfo.html │ │ ├── DatabaseModel.html │ │ ├── ObjectModel.QueryType.html │ │ ├── ObjectModel.html │ │ ├── ObjectModelColumn.html │ │ ├── Relationship.Type.html │ │ ├── Relationship.html │ │ └── UnsupportedTypeException.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── gen │ └── za │ │ └── co │ │ └── neilson │ │ └── sqlite │ │ └── orm │ │ └── android │ │ └── BuildConfig.java ├── project.properties └── src │ └── za │ └── co │ └── neilson │ └── sqlite │ └── orm │ └── android │ ├── AndroidObjectModel.java │ └── AndroidSqliteDatabaseDriverInterface.java ├── SQLite Database Model Core ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── LICENSE.txt ├── NOTICE.txt ├── bin │ └── za │ │ └── co │ │ └── neilson │ │ ├── collections │ │ └── queryable │ │ │ ├── Queryable$1.class │ │ │ ├── Queryable$2.class │ │ │ ├── Queryable$Field.class │ │ │ ├── Queryable$Matcher.class │ │ │ └── Queryable.class │ │ └── sqlite │ │ └── orm │ │ ├── DatabaseDriverInterface.class │ │ ├── DatabaseInfo.class │ │ ├── DatabaseModel.class │ │ ├── ObjectModel$QueryType.class │ │ ├── ObjectModel.class │ │ ├── ObjectModelColumn.class │ │ ├── Query.class │ │ ├── Relationship$Type.class │ │ ├── Relationship.class │ │ ├── UnsupportedTypeException.class │ │ └── annotations │ │ ├── ForeignKey.class │ │ ├── Nullable.class │ │ ├── PrimaryKey.class │ │ ├── Transient.class │ │ └── Unique.class ├── doc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── help-doc.html │ ├── index-files │ │ ├── index-1.html │ │ ├── index-10.html │ │ ├── index-11.html │ │ ├── index-12.html │ │ ├── index-13.html │ │ ├── index-14.html │ │ ├── index-15.html │ │ ├── index-16.html │ │ ├── index-17.html │ │ ├── index-18.html │ │ ├── index-19.html │ │ ├── index-2.html │ │ ├── index-3.html │ │ ├── index-4.html │ │ ├── index-5.html │ │ ├── index-6.html │ │ ├── index-7.html │ │ ├── index-8.html │ │ └── index-9.html │ ├── index.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── resources │ │ ├── background.gif │ │ ├── tab.gif │ │ ├── titlebar.gif │ │ └── titlebar_end.gif │ ├── serialized-form.html │ ├── stylesheet.css │ └── za │ │ └── co │ │ └── neilson │ │ ├── collections │ │ └── queryable │ │ │ ├── Queryable.Field.html │ │ │ ├── Queryable.Matcher.html │ │ │ ├── Queryable.html │ │ │ ├── class-use │ │ │ ├── Queryable.Field.html │ │ │ ├── Queryable.Matcher.html │ │ │ └── Queryable.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ └── sqlite │ │ └── orm │ │ ├── DatabaseDriverInterface.html │ │ ├── DatabaseInfo.html │ │ ├── DatabaseModel.html │ │ ├── ObjectModel.QueryType.html │ │ ├── ObjectModel.html │ │ ├── ObjectModelColumn.html │ │ ├── Query.html │ │ ├── Relationship.Type.html │ │ ├── Relationship.html │ │ ├── UnsupportedTypeException.html │ │ ├── annotations │ │ ├── ForeignKey.html │ │ ├── Nullable.html │ │ ├── PrimaryKey.html │ │ ├── Transient.html │ │ ├── Unique.html │ │ ├── class-use │ │ │ ├── ForeignKey.html │ │ │ ├── Nullable.html │ │ │ ├── PrimaryKey.html │ │ │ ├── Transient.html │ │ │ └── Unique.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── class-use │ │ ├── DatabaseDriverInterface.html │ │ ├── DatabaseInfo.html │ │ ├── DatabaseModel.html │ │ ├── ObjectModel.QueryType.html │ │ ├── ObjectModel.html │ │ ├── ObjectModelColumn.html │ │ ├── Query.html │ │ ├── Relationship.Type.html │ │ ├── Relationship.html │ │ └── UnsupportedTypeException.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html └── src │ └── za │ └── co │ └── neilson │ ├── collections │ └── queryable │ │ └── Queryable.java │ └── sqlite │ └── orm │ ├── DatabaseDriverInterface.java │ ├── DatabaseInfo.java │ ├── DatabaseModel.java │ ├── ObjectModel.java │ ├── ObjectModelColumn.java │ ├── Query.java │ ├── Relationship.java │ ├── UnsupportedTypeException.java │ └── annotations │ ├── ForeignKey.java │ ├── Nullable.java │ ├── PrimaryKey.java │ ├── Transient.java │ └── Unique.java ├── SQLite Database Model JDBC Demo ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── LICENSE.txt ├── NOTICE.txt ├── bin │ └── za │ │ └── co │ │ └── neilson │ │ └── sqlite │ │ └── orm │ │ └── jdbc │ │ └── demo │ │ ├── Car.class │ │ ├── CarDatabaseModel$1.class │ │ ├── CarDatabaseModel$2.class │ │ ├── CarDatabaseModel$3.class │ │ ├── CarDatabaseModel$4.class │ │ ├── CarDatabaseModel.class │ │ ├── Engine$Fuel.class │ │ ├── Engine.class │ │ ├── Main$1.class │ │ ├── Main$2.class │ │ ├── Main.class │ │ ├── Wheel.class │ │ ├── WheelNut$ThingaMaJigger$Status.class │ │ ├── WheelNut$ThingaMaJigger.class │ │ ├── WheelNut.class │ │ └── WheelNutModel.class ├── hs_err_pid10386.log ├── hs_err_pid10516.log └── src │ └── za │ └── co │ └── neilson │ └── sqlite │ └── orm │ └── jdbc │ └── demo │ ├── Car.java │ ├── CarDatabaseModel.java │ ├── Engine.java │ ├── Main.java │ ├── Wheel.java │ ├── WheelNut.java │ └── WheelNutModel.java └── SQLite Database Model JDBC ├── .classpath ├── .project ├── .settings └── org.eclipse.jdt.core.prefs ├── LICENSE.txt ├── NOTICE.txt ├── bin └── za │ └── co │ └── neilson │ └── sqlite │ └── orm │ └── jdbc │ ├── JdbcObjectModel.class │ └── JdbcSqliteDatabaseDriverInterface.class ├── doc ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-18.html │ ├── index-19.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── resources │ ├── background.gif │ ├── tab.gif │ ├── titlebar.gif │ └── titlebar_end.gif ├── serialized-form.html ├── stylesheet.css └── za │ └── co │ └── neilson │ ├── collections │ └── queryable │ │ ├── Queryable.Field.html │ │ ├── Queryable.Matcher.html │ │ ├── Queryable.html │ │ ├── class-use │ │ ├── Queryable.Field.html │ │ ├── Queryable.Matcher.html │ │ └── Queryable.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ └── sqlite │ └── orm │ ├── DatabaseDriverInterface.html │ ├── DatabaseInfo.html │ ├── DatabaseModel.html │ ├── ObjectModel.QueryType.html │ ├── ObjectModel.html │ ├── ObjectModelColumn.html │ ├── Query.html │ ├── Relationship.Type.html │ ├── Relationship.html │ ├── UnsupportedTypeException.html │ ├── annotations │ ├── ForeignKey.html │ ├── Nullable.html │ ├── PrimaryKey.html │ ├── Transient.html │ ├── Unique.html │ ├── class-use │ │ ├── ForeignKey.html │ │ ├── Nullable.html │ │ ├── PrimaryKey.html │ │ ├── Transient.html │ │ └── Unique.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html │ ├── class-use │ ├── DatabaseDriverInterface.html │ ├── DatabaseInfo.html │ ├── DatabaseModel.html │ ├── ObjectModel.QueryType.html │ ├── ObjectModel.html │ ├── ObjectModelColumn.html │ ├── Query.html │ ├── Relationship.Type.html │ ├── Relationship.html │ └── UnsupportedTypeException.html │ ├── jdbc │ ├── JdbcObjectModel.html │ ├── JdbcSqliteDatabaseDriverInterface.html │ ├── class-use │ │ ├── JdbcObjectModel.html │ │ └── JdbcSqliteDatabaseDriverInterface.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html └── src └── za └── co └── neilson └── sqlite └── orm └── jdbc ├── JdbcObjectModel.java └── JdbcSqliteDatabaseDriverInterface.java /NOTICE: -------------------------------------------------------------------------------- 1 | 2 | SQLite Database Model 3 | Copyright 2014 Sheldon Neilson 4 | 5 | This product includes software developed as a part of 6 | The SQLite Database Model ORM Project (http://www.neilson.co.za/). 7 | 8 | ------------------------------------------------------------------ 9 | 10 | Android 11 | Copyright 2005-2008 The Android Open Source Project 12 | 13 | Versions of this product packaged for android support include 14 | software developed as part of 15 | The Android Open Source Project (http://source.android.com). 16 | 17 | ------------------------------------------------------------------ 18 | 19 | Xerial SQLite JDBC Driver 20 | Copyright 2009 Taro L. Saito 21 | 22 | Versions of this product packaged with the Xerial SQLite JDBC Driver includes 23 | software developed as part of 24 | The Xerial SQLite JDBC Driver (http://www.xerial.org/). 25 | 26 | Zentus SQLite JDBC Driver 27 | Copyright 2007 David Crawshaw 28 | 29 | Versions of this product packaged with the Xerial SQLite JDBC Driver includes 30 | software developed by or derived from 31 | The Zentus SQLite JDBC Driver (http://www.zentus.com/). 32 | 33 | ------------------------------------------------------------------ 34 | 35 | Apache Commons 36 | Copyright 1999-2004 The Apache Software Foundation 37 | 38 | This product includes software developed at 39 | The Apache Software Foundation (http://www.apache.org/). 40 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SQLite-Database-Model 2 | ===================== 3 | 4 | SQLite Database Model is a super lightweight yet powerful Object Relational Mapping (ORM) Framework for Java and SQLite 3. 5 | 6 | - [Project Website](http://www.neilson.co.za/sqlite-database-model/ "SQLite Database Model Java/SQLite ORM Project") 7 | - [Getting Started](http://www.neilson.co.za/getting-started-with-sqlite-database-model "Getting Started With SQLite Database Model") 8 | - [Documentation](http://www.neilson.co.za/javadoc/sqlite-database-model/ "SQLite Database Model Java/SQLite ORM Project Documentation") 9 | - [Licence](http://www.neilson.co.za/sqlite-database-model/sqlite-database-model-licence/ "SQLite Database Model Licence") 10 | 11 | _SQLite Database Model weighs in at under 50KB** yet offers a powerful feature set including…_ 12 | 13 | ## Automatic database generation 14 | 15 | Database tables can be created from or mapped to any Java class without the need for inheritance or interface implementation. 16 | 17 | By simply decorating your classes properties with a few key annotations and adding them to the model, SQLite Database Model can generate your enitre SQLite 3 database including primary keys, foreign keys relationships, unique constraints and more all without writing a single line of SQL. 18 | 19 | ## Versatile, reflection powered CRUD methods 20 | 21 | Creating, querying, updating and deleting records in your database can be done with just a few simple lines of code via the SQLite Database Model API. 22 | 23 | For example, to query a database table containing Employee data for all employees that work in HR and earn a salary greater than or equal to 30000 is as simple as: 24 | ```java 25 | List employees = db.getObjectModel(Employee.class) 26 | .getAll("department = ? AND salary >= ?", Department.HR, 30000); 27 | ``` 28 | To update an employee’s salary with a 15% increase, all that we’d need to do is update the object property and pass the employee as a parameter to the update(T t) method of the Employee model… 29 | ```java 30 | employee.setSalary(employee.getSalary() * 1.15); 31 | employeeModel.update(employee); 32 | ``` 33 | 34 | ## Relationship management 35 | 36 | Foreign key constraints and relationships between objects can be defined by simply marking the appropriate property with the @ForeignKey annotation. 37 | 38 | With relationships defined, SQLite Database Model can cascade insert, update & delete operations and automatically retrieve any related objects when the parent object is retrieved from the database. 39 | 40 | For example, SQLite Database Model could be configured to automatically fill an employee’s pencils list with the employees pencils from the pencil table when the employee object is inflated as a result of a database query. 41 | 42 | Furthermore, adding a new pencil to the employee’s pencils list and then updating the employee would automatically insert the new pencil into the SQLite 3 database’s pencil table and deleting the employee could also automatically delete the employees pencils. 43 | 44 | ## Comprehensive type support 45 | 46 | Not only does SQLite Database Model support a comprehensive list of primitive types out of the box, but with ease of extensibility as a primary design concern, you can easily extend your model to map any complex type/java object to a custom table column and SQLite Database Model will persist and re-construct the complex type for you. 47 | 48 | - String 49 | - boolean/Boolean 50 | - byte/Byte/byte[] 51 | - short/Short 52 | - int/Integer 53 | - long/Long 54 | - float/Float 55 | - double/Double 56 | - Date/Calendar 57 | - enum – any enum can be mapped out of the box 58 | - Custom column types – map complex types to a logical primitive value 59 | 60 | _**The size of the SQLite Database Model library is under 50KB. However, if you would like to use the library with JDBC you will need to include the [Xerial SQLite JDBC driver](https://bitbucket.org/xerial/sqlite-jdbc "Xerial SQLite JDBC driver") which is considerably larger(~3000KB). 61 | The Android version does not require a driver as it makes use of Android’s internal SQLite APIs._ 62 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | SQLite Database Model Android Demo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/NOTICE.txt: -------------------------------------------------------------------------------- 1 | 2 | SQLite Database Model 3 | Copyright 2014 Sheldon Neilson 4 | 5 | This product includes software developed as a part of 6 | The SQLite Database Model ORM Project (http://www.neilson.co.za/). 7 | 8 | ------------------------------------------------------------------ 9 | 10 | Android 11 | Copyright 2005-2008 The Android Open Source Project 12 | 13 | Versions of this product packaged for android support include 14 | software developed as part of 15 | The Android Open Source Project (http://source.android.com). 16 | 17 | ------------------------------------------------------------------ 18 | 19 | Xerial SQLite JDBC Driver 20 | Copyright 2009 Taro L. Saito 21 | 22 | Versions of this product packaged with the Xerial SQLite JDBC Driver includes 23 | software developed as part of 24 | The Xerial SQLite JDBC Driver (http://www.xerial.org/). 25 | 26 | Zentus SQLite JDBC Driver 27 | Copyright 2007 David Crawshaw 28 | 29 | Versions of this product packaged with the Xerial SQLite JDBC Driver includes 30 | software developed by or derived from 31 | The Zentus SQLite JDBC Driver (http://www.zentus.com/). 32 | 33 | ------------------------------------------------------------------ 34 | 35 | Apache Commons 36 | Copyright 1999-2004 The Apache Software Foundation 37 | 38 | This product includes software developed at 39 | The Apache Software Foundation (http://www.apache.org/). 40 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/SQLite Database Model Android Demo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/SQLite Database Model Android Demo.apk -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes.dex -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$anim.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$attr.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$bool.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$color.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$dimen.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$drawable.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$id.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$integer.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$layout.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$string.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$style.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R$styleable.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/android/support/v7/appcompat/R.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Car.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Car.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$1.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$2.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$3.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel$4.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/CarDatabaseModel.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Engine$Fuel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Engine$Fuel.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Engine.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Engine.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$1.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$2.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$3.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$4.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment$5.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity$PlaceholderFragment.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/MainActivity.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Wheel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/Wheel.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut$ThingaMaJigger$Status.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut$ThingaMaJigger$Status.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut$ThingaMaJigger.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut$ThingaMaJigger.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNut.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNutModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/android/demo/WheelNutModel.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/BuildConfig.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$anim.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$anim.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$attr.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$bool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$bool.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$color.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$dimen.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$drawable.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$id.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$integer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$integer.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$layout.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$menu.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$string.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$style.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R$styleable.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/classes/za/co/neilson/sqlite/orm/app/R.class -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/dexedLibs/SQLiteDatabaseModelAndroid-1.0-7111977ffb3b9007dc713e2af0fc5b16.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/dexedLibs/SQLiteDatabaseModelAndroid-1.0-7111977ffb3b9007dc713e2af0fc5b16.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/dexedLibs/android-support-v4-62bd44659438f1e3b341f21bf6e0dc3a.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/dexedLibs/android-support-v4-62bd44659438f1e3b341f21bf6e0dc3a.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/dexedLibs/android-support-v7-appcompat-00b9164e0111935b9f15cd587246e05b.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/dexedLibs/android-support-v7-appcompat-00b9164e0111935b9f15cd587246e05b.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/dexedLibs/android-support-v7-appcompat-b6f2e052455529ea9fc8c764805cabd8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/dexedLibs/android-support-v7-appcompat-b6f2e052455529ea9fc8c764805cabd8.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/dexedLibs/sqlite database model android-5437a3d9851c1c6bcd0ad1a6dba2c06c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/dexedLibs/sqlite database model android-5437a3d9851c1c6bcd0ad1a6dba2c06c.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | 1396592732000 648327 ded9acc6a9792b8f1afc470f0c9cd36d178914cd /home/sheldon/Eclipse Workspaces/SQLite Database Model/android-support-v7-appcompat/libs/android-support-v4.jar 5 | 1397729962000 648327 ded9acc6a9792b8f1afc470f0c9cd36d178914cd /home/sheldon/Eclipse Workspaces/SQLite Database Model/SQLite Database Model Android Demo/libs/android-support-v4.jar 6 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/bin/resources.ap_ -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/gen/za/co/neilson/sqlite/orm/app/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package za.co.neilson.sqlite.orm.app; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/ic_launcher-web.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | android.library.reference.1=../android-support-v7-appcompat 16 | android.library.reference.2=../SQLite Database Model Android 17 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SheldonNeilson/SQLite-Database-Model/a8fe2eec14a7df6f6fe58c59019c7b015a323181/SQLite Database Model Android Demo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 8 | 9 | -------------------------------------------------------------------------------- /SQLite Database Model Android Demo/res/layout/fragment_main.xml: -------------------------------------------------------------------------------- 1 | 12 | 13 | 18 | 19 | 24 | 25 | 26 |