https://github.com/d4rk-lucif3r/sqlite-database-example-android-app
SQlite Database in Android
https://github.com/d4rk-lucif3r/sqlite-database-example-android-app
Last synced: 3 months ago
JSON representation
SQlite Database in Android
- Host: GitHub
- URL: https://github.com/d4rk-lucif3r/sqlite-database-example-android-app
- Owner: d4rk-lucif3r
- Created: 2020-05-02T20:40:48.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T16:08:16.000Z (almost 5 years ago)
- Last Synced: 2025-01-22T09:52:33.690Z (4 months ago)
- Language: Java
- Size: 153 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SQLite Database Example Android App by d4rk-lucif3r

- This App uses the SQlite Database in Android.
# Description
- The main activity consists of:
- 4 TextViews and 4 EditTexts for Name, Surname , Marks , And ID.
- 4 Buttons for Adding, Showing, Deleting and Updating Data into Datadase.
## Usage
**Sqlite Database** is a software library that provides a relational database management system. The lite in SQLite means light weight in terms of setup, database administration, and required resource. SQLite has the following noticeable features: self-contained, serverless, zero-configuration, transactional.## Working
- As soon as the app is installed it creates as database named as lucifer and a table named as Student containing 4 columns ID which is the primary key and of integer typr , Name string type , Surname String type , Marks Integer type.
- Data is fed into the database through the Edittexts and then pressing **Add** Button.
- Data is pulled from database by usimg **Show** button.
- Data is deleted from Database using **Delete** Button.
- To update data in Database, updated data is entered through edittexts and updated on the basis of ID usimg **update** Button.## Screenshot
