210029073 / cs3ip_lh3_myeyehealth

An eye health management mobile application designed for users to manage their eye heatlh
0 stars 0 forks source link

Setup Database #4

Closed 210029073 closed 5 months ago

210029073 commented 8 months ago

About

Based on the provided schema created during the design phase, I must implement the schema within a given database package:

Offline Database

Information related to:

Can be stored using Android's local DB using Room which is an elegant way of managing a local database and performing CRUD operations without requiring the need to use SQLite APIs as it can result to long and complex results.

For more info click here.

210029073 commented 8 months ago

Experiencing issues with auto incrementing primary key.

210029073 commented 8 months ago

Need to use @PrimaryKey(autoGenerate = true) property

210029073 commented 5 months ago

Migrations are set.