EasySQLite


Source link: https://github.com/tonilopezmr/Android-EasySQLite

#EasySQLite

Use easily the database SQLite on android using the DAO and transformer design patterns, I modified the library of the professor @jvprofe, I learned it from him.

Basic methods are already implemented in the class SQLiteDelegate<T>, if you need further queries you should extend from it.

#How to use

####Import EasySQLite dependency:

Grab via maven:

<dependency>
  <groupId>com.github.tonilopezmr</groupId>
  <artifactId>easysqlite</artifactId>
  <version>2.1.0</version> </dependency>

or gradle:

compile 'com.github.tonilopezmr:easysqlite:2.1.0'

####1. Create the object Transformer which implements SQLiteTransformer

 public class SubjectTransformer implements SQLiteTransformer<SubjectEntity>{

 public static final String ID = "id";

public static final String NAME = "name";

 public static final String TABLE_NAME = "subject";

public static final String[] FIELDS = {
ID, NAME
}
;

 @Override

public SubjectEntity transform(Cursor cursor) throws Exception {

 int id = cursor.getInt(0);

 String name = cursor.getString(1);

 return new SubjectEntity(id, name);

}

 @Override

public ContentValues transform(SubjectEntity dto) throws Exception {

 ContentValues values = new ContentValues();

 //values.put(ID, dto.getId());

it is not necessary, autoincrement!

 values.put(NAME, dto.getName());

  return values;

}

 @Override

public String getWhereClause(SubjectEntity dto) throws Exception {

 return  ID+"="+dto.getId();

}

 @Override

public SubjectEntity setId(SubjectEntity dto, Object id) throws Exception {

 dto.setId((Integer.valueOf(id.toString())));

 return dto;

}

 @Override

public String[] getFields() throws Exception {

 return FIELDS;

}

 @Override

public String getTableName() throws Exception {

 return TABLE_NAME;

}
  
}

####2. Create the object DAO which extends SQLiteDelegate

The SQLiteDelegate<T> has implemented the following methods:

//Default methods implement with SQLiteDelegate T create(T dto) int update(T dto) T read(T id) Collection<T> readAll() boolean delete(T dto) int deleteAll() 
 public class SubjectDAO extends SQLiteDelegate<SubjectEntity> {

 public SubjectDAO(SQLiteDatabase db) {

 super(db, new SubjectTransformer());

}

//In the case you need more querys, write this for example:

public List<T> getSubjectsApproved() {

 ...

  
}

  
}

####If you need one relation between objects (foreign key)

 public class SubjectTransformer implements SQLiteTransformer<SubjectEntity>{

...
 private ExamDAO examDAO;

 public SubjectTransformer(SQLiteDatabase db){

 examDAO = new ExamDAO(db);

}

 ...

}

####and

 public class SubjectDAO extends SQLiteDelegate<SubjectEntity> {

public SubjectDAO(SQLiteDatabase db) {

  super(db, new SubjectTransformer(db));

 
}

}

####3. Instance the object DAO and use the CRUD methods


...

 SubjectDAO subjectDAO = new SubjectDAO(database);

  Subject subject = new Subject("maths");

 //Create
  subject = subjectDAO.create(subject);

 //Delete
  boolean isDelete = subjectDAO.delete(subject);

  ...
  

Use the SQLiteHelper and get rid of SQLiteOpenHelper

####If you need one simple database:

//Create table final private String SUBJECT_TABLE =

"CREATE TABLE SUBJECT(" +

 "ID INTEGER PRIMARY KEY AUTOINCREMENT," +

 "NAME TEXT NOT NULL" +

")";  //Table name

   final private String SUBJECT = "SUBJECT";  final private String[] TABLES = {
SUBJECT_TABLE
}
; final private String[] TABLE_NAMES = {
SUBJECT
}
;  

Important:

  • The array TABLES in database must be sorted in order of creation, to avoid problems with the foreign keys!.

  • The array tables in database must be sorted in opposite order by the array of creation tables, for example:

final private String[] TABLES = {
SUBJECT_TABLE, EXAM_TABLE, PROFESSOR_TABLE
}
; //Very important, sorted in opposite order. final private String[] TABLE_NAMES = {
PROFESSOR, EXAM, SUBJECT_TABLE
}
;  

Create SQLiteHelper:

SQLiteHelper helper = SQLiteHelper.builder()  .tables(TABLES)
.tableNames(TABLE_NAMES)
.build(context);

 SQLiteDatabase dataBase = helper.getWritableDatabase();
 

In this case, the name and version of the database by default are Name: com.easysqlite and Version: 1. For put the name and version you can do:

SQLiteHelper helper = SQLiteHelper.builder()  .tables(TABLES)
.tableNames(TABLE_NAMES)
.build(context, DATABASE_NAME, SQLITE_VERSION);

OR

SQLiteHelper helper = SQLiteHelper.builder()  .tables(TABLES)
.tableNames(TABLE_NAMES)
.name(DATABASE_NAME)
.version(DATABASE_VERSION)
.build(context);

####If you need one custom implementation:

private static SQLiteHelper.SQLiteHelperCallback helperCallback = new SQLiteHelper.SQLiteHelperCallback() {

@Override

public void onCreate(SQLiteDatabase db) {

 db.execSQL(SUBJECT_TABLE);

 db.execSQL("INSERT INTO "+SUBJECT+"(name) VALUES ('Maths')");

  ...

}

 @Override

public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

 ...

 
}
 
}
; 
SQLiteHelper helper = SQLiteHelper.builder()  .beginConfig()
.helperCallback(helperCallback)
.foreignKey(true)  //PRAGMA foreign_keys = ON  .endConfig()  .tables(TABLES)  .tableNames(TABLE_NAMES)  .build(context, DATABASE_NAME, cursorFactory, SQLITE_VERSION);

If you need change only the method onCreate or onUpgrade, use onCreateCallback(OnCreateCallback callback) or onUpgradeCallback(OnUpgradeCallback callback).

Sample Clean architecture

The code which uses this library is in the package 'com.tonilopezmr.sample.data.SQLite'.

I use the Clean architecture with the pattern MVP, I have been motivated for the speaker pedrovgs in DroidCon 2014.

After see the MVP implementations of:

Libraries used on the sample project

If anything is wrong contact me

######Sorry for my English :(

License

Copyright 2015 Antonio López Marín <tonilopezmr.com>  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

SwipeableRV is a library that provides a fast and convenient way to implement the 'swipe to dismiss' feature in Recycler View, as seen in apps such as Messenger.

SwipeableRV wraps around ItemTouchHelper from the Android Support Library. Therefore, developers do not need to do any extra work on ItemTouchHelper.Callback themselves. Instead they can just focus on creating a recycler view, adapter, and view holder as normal, plus some minimal work on specifying some details such as supported swipe directions, deletion message or icon.

A custom view that gives the user a look and feel of selecting options with smoother slider animation.

With this SDK you can access the API behind the DRAE (Diccionario de la Real Academia Española, the official spanish dictionary) in order to use it in your own app.

Shortify is used for minimizing your coding effort in your development environment. It has some builtin method and classes which helps you in creating mostly used element and tasks in Android app.

Android library handling flashlight for camera and camera2 api. Added support for handling display/screen light.

Yet Another Android animated Seekbar inspired from Philips Hue app.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes