Now that you have learned how to add anko-sqlite dependencies to your project and how to use SQLite database in the first recipe, the next step is learning how to create database tables.
Creating database tables
Getting ready
We'll be using Android Studio 3 for coding. Ensure that you have added anko-sqlite to your build.gradle file and gone through the first recipe on how to use a SQLite database.
How to do it…
We will be creating two tables:Â Requests and customers:
- For the Requests table, we have the name and message fields, and we can...