Android SQLite Database Tutorial - w2class
Peeyush Singhal
Senior Technical Lead at Mphasis Silverline | 7X Mulesoft Certified | 2X Salesforce Certified | Jitterbit Certified
SQLite is a opensource SQL database that stores data to a text file on a device. Android comes in with built in SQLite database implementation. SQLite is a very light weight database. In this tutorial I’ll be discussing how to write classes to handle all SQLite operations.
In this tutorial I am taking an example of storing products in SQLite database. I am using a table called Products to
store user products. This table contains three columns id (INT), name (TEXT), price(TEXT).