Activeandroid ORM crud example use android studio Part 1
ActiveAndroid
works like any Object Relational Mapper by mapping java classes to database tables and mapping java class member variables to the table columns. Through this process, each table maps to a Java model and the columns in the table represent the respective data fields. Similarly, each row in the database represents a particular object. This allows us to create, modify, delete and query our SQLite database using model objects instead of raw SQL.
Example
For example, a « Tweet » model would be mapped to a « tweets » table in the database. The Tweet model might have a « body » field that maps to a body column in the table and a « timestamp » field that maps to a timestamp column. Through this process, each row would map to a particular tweet
Views :2552
android studio