Changes

Jump to: navigation, search

An Android SQLite Database Tutorial

3 bytes added, 15:07, 7 July 2014
About the Database Example
As is probably evident from the user interface layout designed in the preceding chapter, the example project is a simple data entry and retrieval application designed to allow the user to add, query and delete database entries. The idea behind this application is to allow the tracking of product inventory.
The name of the database will be productID.db which, in turn, will contain a single table named products. Each record in the database table will contain a unique product ID, a product description and the quantity of that product item currently in stock, corresponding to column names of “productid”, “productname” and “productquantity” respectively. The productid column will act as the primary key and will be automatically assigned and incremented by the database management system.
The database schema for the products table is outlined in Table 34-1:

Navigation menu