SlideShare a Scribd company logo
Ex -6
Create an android app for database
creation using SQLite Database
Introduction To SQLite And
Installation
 SQLite is a Structure query base database, open
source, light weight, no network access and
standalone database. It support embedded
relational database features.
 SQLite is a open source , lite weight, no network
access, standalone database. It support
embedded relational database features.
 Android has built in SQLite database
implementation. It is available locally over the
device(mobile, tablet) and contain data in text
format, it carry lite weight data and suitable with
any languages.
 Android has built in SQLite database
implementation. It is available locally over the
device(mobile & tablet) and contain data in
text format.
Classes
SQLiteClosable An object created from a SQLiteDatabase that can be closed.
SQLiteCursor A Cursor implementation that exposes results from a query on
a SQLiteDatabase.
SQLiteDatabase Exposes methods to manage a SQLite database.
SQLiteDatabase.
OpenParams
Wrapper for configuration parameters that are used for
opening SQLiteDatabase
SQLiteDatabase.
OpenParams.Buil
der
Builder for OpenParams.
SQLiteOpenHelp
er
A helper class to manage database creation and version management.
SQLiteProgram A base class for compiled SQLite programs.
SQLiteQuery Represents a query that reads the resulting rows into a SQLiteQuery.
SQLiteQueryBuild
er
This is a convenience class that helps build SQL queries to be sent
to SQLiteDatabase objects.
SQLiteStatement Represents a statement that can be executed against a database.
Exceptions
SQLiteAbortException An exception that indicates that the SQLite program was
aborted.
SQLiteAccessPermException This exception class is used when sqlite can't access the
database file due to lack of permissions on the file.
SQLiteBindOrColumnIndexOutOfRan
geException
Thrown if the the bind or column parameter index is out of
range
SQLiteBlobTooBigException
SQLiteCantOpenDatabaseException
SQLiteConstraintException An exception that indicates that an integrity constraint was
violated.
SQLiteDatabaseCorruptException An exception that indicates that the SQLite database file is
corrupt.
SQLiteDatabaseLockedException Thrown if the database engine was unable to acquire the
database locks it needs to do its job.
SQLiteDatatypeMismatchException
SQLiteDiskIOException An exception that indicates that an IO error occured while
accessing the SQLite database file.
SQLiteDoneException An exception that indicates that the SQLite program is done.
SQLiteException A SQLite exception that indicates there was an error with SQL
parsing or execution.
SQLiteFullException An exception that indicates that the SQLite database is full.
SQLiteMisuseException This error can occur if the application creates a
SQLiteStatement object and allows multiple threads in the
application use it at the same time.
https://www.sqlite.org/download.html
 1: Click here to download SQLite.
2: Scroll Down and found Precompiled Binaries
for Windows and on link to download.
3: Get the file downloaded on your local system,
now open C drive create a new folder like
SQLite3 paste the downloaded file here.
4: Now you are done with installation. To run
command in SQLite open Command Prompt
move to the path where SQLite is copied. Now
you can define any query over here.
Creating And Updating Database In
Android
 For creating, updating and other operations you
need to create a subclass
or SQLiteOpenHelper class. SQLiteOpenHelper
is a helper class to manage database creation
and version management. It provides two
methods onCreate(SQLiteDatabase db),
onUpgrade(SQLiteDatabase db, int oldVersion,
int newVersion).
 The SQLiteOpenHelper is responsible for
opening database if exist, creating database if it
does not exists and upgrading if required. The
SQLiteOpenHelper only require the
DATABASE_NAME to create database. After
extending SQLiteOpenHelper you will need to
implement its methods onCreate, onUpgrade and
 onCreate(SQLiteDatabase sqLiteDatabase) method is called
only once throughout the application lifecycle. It will be called
whenever there is a first call to getReadableDatabase() or
getWritableDatabase() function available in super
SQLiteOpenHelper class. So SQLiteOpenHelper class call the
onCreate() method after creating database and instantiate
SQLiteDatabase object. Database name is passed in
constructor call.
 onUpgrade(SQLiteDatabase db,int oldVersion, int
newVersion) is only called whenever there is a updation in
existing version. So to update a version we have to increment
the value of version variable passed in the superclass
constructor. In onUpgrade method we can write queries to
perform whatever action is required. In most example you will
see that existing table(s) are being dropped and again
onCreate() method is being called to create tables again. But it’s
not mandatory to do so and it all depends upon your
requirements.
 We have to change database version if we have added a new
row in the database table. If we have requirement that we don’t
want to lose existing data in the table then we can write alter
table query in the onUpgrade(SQLiteDatabase db,int
oldVersion, int newVersion) method.
Create an android app for database creation using.pptx
In this step we create a layout in our XML file adding textbox,
buttons, edittext. On button onclick is defined which associate it
with related function.
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.sqliteoperations.MainActivity" android:background="@android:color/holo_blue_dark"> <TextView android:text="@string/username"
android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_marginTop="12dp"
android:id="@+id/textView" android:textSize="18sp" android:textStyle="bold|italic" android:layout_alignParentLeft="true" android:layout_alignParentStart="true"
android:gravity="center" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textPersonName"
android:ems="10" android:id="@+id/editName" android:textStyle="bold|italic" android:layout_below="@+id/textView" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" android:hint="Enter Name" android:gravity="center_vertical|center" /> <TextView android:text="@string/password"
android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="13dp" android:id="@+id/textView2"
android:textStyle="bold|italic" android:textSize="18sp" android:layout_below="@+id/editName" android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" android:gravity="center" android:hint="Enter Password" /> <Button android:text="@string/view_data"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/button2" android:textSize="18sp" android:onClick="viewdata"
android:textStyle="bold|italic" android:layout_alignBaseline="@+id/button" android:layout_alignBottom="@+id/button" android:layout_alignRight="@+id/button4"
android:layout_alignEnd="@+id/button4" /> <Button android:text="@string/add_user" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/button" android:textStyle="bold|italic" android:textSize="18sp" android:onClick="addUser" android:layout_marginLeft="28dp"
android:layout_marginStart="28dp" android:layout_below="@+id/editPass" android:layout_alignParentLeft="true" android:layout_alignParentStart="true"
android:layout_marginTop="23dp" /> <Button android:text="@string/update" android:layout_width="wrap_content" android:layout_height="wrap_content"
android:id="@+id/button3" android:onClick="update" android:textStyle="normal|bold" android:layout_below="@+id/editText3"
android:layout_alignLeft="@+id/button4" android:layout_alignStart="@+id/button4" android:layout_marginTop="13dp" /> <EditText
android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10" android:id="@+id/editText6"
android:layout_alignTop="@+id/button4" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:freezesText="false"
android:hint="Enter Name to Delete Data" android:layout_toLeftOf="@+id/button2" android:layout_toStartOf="@+id/button2" /> <Button
android:text="@string/delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="21dp"
android:layout_marginEnd="21dp" android:id="@+id/button4" android:onClick="delete" android:textStyle="normal|bold" tools:ignore="RelativeOverlap"
android:layout_marginBottom="41dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_alignParentEnd="true" />
<EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10"
android:layout_marginTop="47dp" android:id="@+id/editText3" android:textStyle="bold|italic" android:textSize="14sp" android:layout_below="@+id/button"
android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_marginLeft="7dp" android:layout_marginStart="7dp"
android:hint="Current Name" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textPassword"
android:ems="10" android:layout_marginTop="11dp" android:id="@+id/editPass" android:hint="Enter Password" android:gravity="center_vertical|center"
android:textSize="18sp" android:layout_below="@+id/textView2" android:layout_alignParentLeft="true" android:layout_alignParentStart="true"
android:textAllCaps="false" android:textStyle="normal|bold" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content"
android:inputType="textPersonName" android:ems="10" android:id="@+id/editText5" android:textStyle="bold|italic" android:textSize="14sp" android:hint="New
Name" android:layout_alignTop="@+id/button3" android:layout_alignLeft="@+id/editText3" android:layout_alignStart="@+id/editText3"
android:layout_marginTop="32dp" /> </RelativeLayout>
Step 3 : Now open app -> java -> package ->
MainActivity.java and add the below code.
In this step we used the functions that linked via the button click. These
functions are defined in other class and are used here. Each function return
value that define no of rows updated, using that we defined whether operation is
successful or not. Also user need to define valid data to perform operation
empty fields will not be entertained and return error .
package com.example.sqliteoperations; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import
android.widget.EditText; public class MainActivity extends AppCompatActivity { EditText Name, Pass , updateold,
updatenew, delete; myDbAdapter helper; @Override protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Name= (EditText)
findViewById(R.id.editName); Pass= (EditText) findViewById(R.id.editPass); updateold= (EditText)
findViewById(R.id.editText3); updatenew= (EditText) findViewById(R.id.editText5); delete = (EditText)
findViewById(R.id.editText6); helper = new myDbAdapter(this); } public void addUser(View view) { String t1 =
Name.getText().toString(); String t2 = Pass.getText().toString(); if(t1.isEmpty() || t2.isEmpty()) {
Message.message(getApplicationContext(),"Enter Both Name and Password"); } else { long id =
helper.insertData(t1,t2); if(id<=0) { Message.message(getApplicationContext(),"Insertion Unsuccessful");
Name.setText(""); Pass.setText(""); } else { Message.message(getApplicationContext(),"Insertion Successful");
Name.setText(""); Pass.setText(""); } } } public void viewdata(View view) { String data = helper.getData();
Message.message(this,data); } public void update( View view) { String u1 = updateold.getText().toString(); String u2 =
updatenew.getText().toString(); if(u1.isEmpty() || u2.isEmpty()) { Message.message(getApplicationContext(),"Enter
Data"); } else { int a= helper.updateName( u1, u2); if(a<=0) {
Message.message(getApplicationContext(),"Unsuccessful"); updateold.setText(""); updatenew.setText(""); } else {
Message.message(getApplicationContext(),"Updated"); updateold.setText(""); updatenew.setText(""); } } } public void
delete( View view) { String uname = delete.getText().toString(); if(uname.isEmpty()) {
Message.message(getApplicationContext(),"Enter Data"); } else{ int a= helper.delete(uname); if(a<=0) {
Message.message(getApplicationContext(),"Unsuccessful"); delete.setText(""); } else { Message.message(this,
"DELETED"); delete.setText(""); } } } }
Step 4: In this step create a java class myDbAdapter. java.
In this we define the functions that are used to perform the operations insert, update
and delete operations in SQLite. Further this class create another class that will
extend the SQLiteOpenHelper. Each function carry equivalent methods that perform
operations.
package com.example.sqliteoperations; import android.content.ContentValues; import android.content.Context; import
android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper;
public class myDbAdapter { myDbHelper myhelper; public myDbAdapter(Context context) { myhelper = new
myDbHelper(context); } public long insertData(String name, String pass) { SQLiteDatabase dbb =
myhelper.getWritableDatabase(); ContentValues contentValues = new ContentValues(); contentValues.put(myDbHelper.NAME,
name); contentValues.put(myDbHelper.MyPASSWORD, pass); long id = dbb.insert(myDbHelper.TABLE_NAME, null ,
contentValues); return id; } public String getData() { SQLiteDatabase db = myhelper.getWritableDatabase(); String[] columns =
{myDbHelper.UID,myDbHelper.NAME,myDbHelper.MyPASSWORD}; Cursor cursor
=db.query(myDbHelper.TABLE_NAME,columns,null,null,null,null,null); StringBuffer buffer= new StringBuffer(); while
(cursor.moveToNext()) { int cid =cursor.getInt(cursor.getColumnIndex(myDbHelper.UID)); String name
=cursor.getString(cursor.getColumnIndex(myDbHelper.NAME)); String password
=cursor.getString(cursor.getColumnIndex(myDbHelper.MyPASSWORD)); buffer.append(cid+ " " + name + " " + password +"
n"); } return buffer.toString(); } public int delete(String uname) { SQLiteDatabase db = myhelper.getWritableDatabase(); String[]
whereArgs ={uname}; int count =db.delete(myDbHelper.TABLE_NAME ,myDbHelper.NAME+" = ?",whereArgs); return count; }
public int updateName(String oldName , String newName) { SQLiteDatabase db = myhelper.getWritableDatabase();
ContentValues contentValues = new ContentValues(); contentValues.put(myDbHelper.NAME,newName); String[] whereArgs=
{oldName}; int count =db.update(myDbHelper.TABLE_NAME,contentValues, myDbHelper.NAME+" = ?",whereArgs ); return
count; } static class myDbHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "myDatabase"; //
Database Name private static final String TABLE_NAME = "myTable"; // Table Name private static final int DATABASE_Version
= 1;. // Database Version private static final String UID="_id"; // Column I (Primary Key) private static final String NAME =
"Name"; //Column II private static final String MyPASSWORD= "Password"; // Column III private static final String
CREATE_TABLE = "CREATE TABLE "+TABLE_NAME+ " ("+UID+" INTEGER PRIMARY KEY AUTOINCREMENT, "+NAME+"
VARCHAR(255) ,"+ MyPASSWORD+" VARCHAR(225));"; private static final String DROP_TABLE ="DROP TABLE IF EXISTS
"+TABLE_NAME; private Context context; public myDbHelper(Context context) { super(context, DATABASE_NAME, null,
DATABASE_Version); this.context=context; } public void onCreate(SQLiteDatabase db) { try { db.execSQL(CREATE_TABLE); }
catch (Exception e) { Message.message(context,""+e); } } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion,
int newVersion) { try { Message.message(context,"OnUpgrade"); db.execSQL(DROP_TABLE); onCreate(db); }catch (Exception
e) { Message.message(context,""+e); } } } }
Step 5: In this step create another java class
Message.class
In this just simply add toast for displaying message. This is optional, it is just
added to again and again defining toast in the example.
package com.example.sqliteoperations;
import android.content.Context; import
android.widget.Toast; public class Message
{ public static void message(Context
context, String message) {
Toast.makeText(context, message,
Toast.LENGTH_LONG).show(); } }
Create an android app for database creation using.pptx
Reference:
https://www.youtube.com/watch?v=hDSVInZ2JCs

More Related Content

PPTX
Android Programming.pptx
PPTX
Android Layout.pptx
PPTX
Develop a native application that uses GPS location.pptx
PPTX
Write an application that draws basic graphical primitives.pptx
PPTX
Android Intent.pptx
PPTX
Android Tutorials : Basic widgets
PDF
Day 8: Dealing with Lists and ListViews
PPTX
Android Widget
Android Programming.pptx
Android Layout.pptx
Develop a native application that uses GPS location.pptx
Write an application that draws basic graphical primitives.pptx
Android Intent.pptx
Android Tutorials : Basic widgets
Day 8: Dealing with Lists and ListViews
Android Widget

What's hot (20)

PPT
View groups containers
PDF
Android ui layout
DOCX
Android resources in android-chapter9
PPTX
Android Tutorials - Powering with Selection Widget
PPTX
Day 15: Content Provider: Using Contacts API
PDF
Android appwidget
PPT
android layouts
PPT
Day 4: Android: UI Widgets
PPTX
Day 15: Working in Background
PPTX
Android Application Component: BroadcastReceiver Tutorial
DOCX
Android App To Display Employee Details
PPTX
Android development session 3 - layout
PPTX
Android Services
PPT
Multiple Activity and Navigation Primer
DOCX
Android xml-based layouts-chapter5
PDF
Marakana Android User Interface
PPTX
Android Workshop: Day 1 Part 3
PPTX
Building a simple user interface lesson2
PPT
Day: 2 Environment Setup for Android Application Development
PPT
Day 3: Getting Active Through Activities
View groups containers
Android ui layout
Android resources in android-chapter9
Android Tutorials - Powering with Selection Widget
Day 15: Content Provider: Using Contacts API
Android appwidget
android layouts
Day 4: Android: UI Widgets
Day 15: Working in Background
Android Application Component: BroadcastReceiver Tutorial
Android App To Display Employee Details
Android development session 3 - layout
Android Services
Multiple Activity and Navigation Primer
Android xml-based layouts-chapter5
Marakana Android User Interface
Android Workshop: Day 1 Part 3
Building a simple user interface lesson2
Day: 2 Environment Setup for Android Application Development
Day 3: Getting Active Through Activities
Ad

Similar to Create an android app for database creation using.pptx (20)

PPTX
Database in Android
PPTX
Databases in Android Application
DOCX
Android sq lite-chapter 22
DOCX
Android sql examples
DOCX
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
PPTX
Android Training (Storing data using SQLite)
PDF
Android App Development 05 : Saving Data
PPTX
Lecture 10: Android SQLite database.pptx
PPTX
12_Data_Storage_Part_2.pptx
PDF
Chapter6 database connectivity
PPT
Migrating from PHP 4 to PHP 5
PPTX
MobileApplicationDevelopment SQLite.pptx
PDF
I am looking for some assistance with SQLite database. I have tried se.pdf
PDF
9 content-providers
PPT
jdbc_presentation.ppt
PPTX
SQLite database in android
PDF
Advance Java Practical file
DOCX
Accessing data with android cursors
DOCX
Accessing data with android cursors
PPTX
Data Handning with Sqlite for Android
Database in Android
Databases in Android Application
Android sq lite-chapter 22
Android sql examples
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
Android Training (Storing data using SQLite)
Android App Development 05 : Saving Data
Lecture 10: Android SQLite database.pptx
12_Data_Storage_Part_2.pptx
Chapter6 database connectivity
Migrating from PHP 4 to PHP 5
MobileApplicationDevelopment SQLite.pptx
I am looking for some assistance with SQLite database. I have tried se.pdf
9 content-providers
jdbc_presentation.ppt
SQLite database in android
Advance Java Practical file
Accessing data with android cursors
Accessing data with android cursors
Data Handning with Sqlite for Android
Ad

More from vishal choudhary (20)

PPTX
mobile application using automatin using node ja java on
PPTX
mobile development using node js and java
PPTX
Pixel to Percentage conversion Convert left and right padding of a div to per...
PPTX
esponsive web design means that your website (
PPTX
function in php using like three type of function
PPTX
data base connectivity in php using msql database
PPTX
software evelopment life cycle model and example of water fall model
PPTX
software Engineering lecture on development life cycle
PPTX
strings in php how to use different data types in string
PPTX
OPEN SOURCE WEB APPLICATION DEVELOPMENT question
PPTX
web performnace optimization using css minification
PPTX
web performance optimization using style
PPTX
Data types and variables in php for writing and databse
PPTX
Data types and variables in php for writing
PPTX
Data types and variables in php for writing
PPTX
sofwtare standard for test plan it execution
PPTX
Software test policy and test plan in development
PPTX
function in php like control loop and its uses
PPTX
introduction to php and its uses in daily
PPTX
data type in php and its introduction to use
mobile application using automatin using node ja java on
mobile development using node js and java
Pixel to Percentage conversion Convert left and right padding of a div to per...
esponsive web design means that your website (
function in php using like three type of function
data base connectivity in php using msql database
software evelopment life cycle model and example of water fall model
software Engineering lecture on development life cycle
strings in php how to use different data types in string
OPEN SOURCE WEB APPLICATION DEVELOPMENT question
web performnace optimization using css minification
web performance optimization using style
Data types and variables in php for writing and databse
Data types and variables in php for writing
Data types and variables in php for writing
sofwtare standard for test plan it execution
Software test policy and test plan in development
function in php like control loop and its uses
introduction to php and its uses in daily
data type in php and its introduction to use

Recently uploaded (20)

PDF
Landforms and landscapes data surprise preview
PPTX
IMMUNIZATION PROGRAMME pptx
PDF
What Is Coercive Control? Understanding and Recognizing Hidden Abuse
PPTX
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
PDF
PG-BPSDMP 2 TAHUN 2025PG-BPSDMP 2 TAHUN 2025.pdf
PDF
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
PDF
UTS Health Student Promotional Representative_Position Description.pdf
PDF
5.Universal-Franchise-and-Indias-Electoral-System.pdfppt/pdf/8th class social...
PPTX
Software Engineering BSC DS UNIT 1 .pptx
PPTX
Strengthening open access through collaboration: building connections with OP...
PPTX
Information Texts_Infographic on Forgetting Curve.pptx
PPTX
Introduction and Scope of Bichemistry.pptx
PPTX
Congenital Hypothyroidism pptx
PPTX
Odoo 18 Sales_ Managing Quotation Validity
PPTX
vedic maths in python:unleasing ancient wisdom with modern code
PDF
LDMMIA Reiki Yoga Workshop 15 MidTerm Review
PPTX
Open Quiz Monsoon Mind Game Prelims.pptx
PPTX
ACUTE NASOPHARYNGITIS. pptx
PDF
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
PPTX
Skill Development Program For Physiotherapy Students by SRY.pptx
Landforms and landscapes data surprise preview
IMMUNIZATION PROGRAMME pptx
What Is Coercive Control? Understanding and Recognizing Hidden Abuse
family health care settings home visit - unit 6 - chn 1 - gnm 1st year.pptx
PG-BPSDMP 2 TAHUN 2025PG-BPSDMP 2 TAHUN 2025.pdf
Piense y hagase Rico - Napoleon Hill Ccesa007.pdf
UTS Health Student Promotional Representative_Position Description.pdf
5.Universal-Franchise-and-Indias-Electoral-System.pdfppt/pdf/8th class social...
Software Engineering BSC DS UNIT 1 .pptx
Strengthening open access through collaboration: building connections with OP...
Information Texts_Infographic on Forgetting Curve.pptx
Introduction and Scope of Bichemistry.pptx
Congenital Hypothyroidism pptx
Odoo 18 Sales_ Managing Quotation Validity
vedic maths in python:unleasing ancient wisdom with modern code
LDMMIA Reiki Yoga Workshop 15 MidTerm Review
Open Quiz Monsoon Mind Game Prelims.pptx
ACUTE NASOPHARYNGITIS. pptx
Phylum Arthropoda: Characteristics and Classification, Entomology Lecture
Skill Development Program For Physiotherapy Students by SRY.pptx

Create an android app for database creation using.pptx

  • 1. Ex -6 Create an android app for database creation using SQLite Database
  • 2. Introduction To SQLite And Installation  SQLite is a Structure query base database, open source, light weight, no network access and standalone database. It support embedded relational database features.  SQLite is a open source , lite weight, no network access, standalone database. It support embedded relational database features.  Android has built in SQLite database implementation. It is available locally over the device(mobile, tablet) and contain data in text format, it carry lite weight data and suitable with any languages.
  • 3.  Android has built in SQLite database implementation. It is available locally over the device(mobile & tablet) and contain data in text format.
  • 4. Classes SQLiteClosable An object created from a SQLiteDatabase that can be closed. SQLiteCursor A Cursor implementation that exposes results from a query on a SQLiteDatabase. SQLiteDatabase Exposes methods to manage a SQLite database. SQLiteDatabase. OpenParams Wrapper for configuration parameters that are used for opening SQLiteDatabase SQLiteDatabase. OpenParams.Buil der Builder for OpenParams. SQLiteOpenHelp er A helper class to manage database creation and version management. SQLiteProgram A base class for compiled SQLite programs. SQLiteQuery Represents a query that reads the resulting rows into a SQLiteQuery. SQLiteQueryBuild er This is a convenience class that helps build SQL queries to be sent to SQLiteDatabase objects. SQLiteStatement Represents a statement that can be executed against a database.
  • 5. Exceptions SQLiteAbortException An exception that indicates that the SQLite program was aborted. SQLiteAccessPermException This exception class is used when sqlite can't access the database file due to lack of permissions on the file. SQLiteBindOrColumnIndexOutOfRan geException Thrown if the the bind or column parameter index is out of range SQLiteBlobTooBigException SQLiteCantOpenDatabaseException SQLiteConstraintException An exception that indicates that an integrity constraint was violated. SQLiteDatabaseCorruptException An exception that indicates that the SQLite database file is corrupt. SQLiteDatabaseLockedException Thrown if the database engine was unable to acquire the database locks it needs to do its job. SQLiteDatatypeMismatchException SQLiteDiskIOException An exception that indicates that an IO error occured while accessing the SQLite database file. SQLiteDoneException An exception that indicates that the SQLite program is done. SQLiteException A SQLite exception that indicates there was an error with SQL parsing or execution. SQLiteFullException An exception that indicates that the SQLite database is full. SQLiteMisuseException This error can occur if the application creates a SQLiteStatement object and allows multiple threads in the application use it at the same time.
  • 6. https://www.sqlite.org/download.html  1: Click here to download SQLite. 2: Scroll Down and found Precompiled Binaries for Windows and on link to download. 3: Get the file downloaded on your local system, now open C drive create a new folder like SQLite3 paste the downloaded file here. 4: Now you are done with installation. To run command in SQLite open Command Prompt move to the path where SQLite is copied. Now you can define any query over here.
  • 7. Creating And Updating Database In Android  For creating, updating and other operations you need to create a subclass or SQLiteOpenHelper class. SQLiteOpenHelper is a helper class to manage database creation and version management. It provides two methods onCreate(SQLiteDatabase db), onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion).  The SQLiteOpenHelper is responsible for opening database if exist, creating database if it does not exists and upgrading if required. The SQLiteOpenHelper only require the DATABASE_NAME to create database. After extending SQLiteOpenHelper you will need to implement its methods onCreate, onUpgrade and
  • 8.  onCreate(SQLiteDatabase sqLiteDatabase) method is called only once throughout the application lifecycle. It will be called whenever there is a first call to getReadableDatabase() or getWritableDatabase() function available in super SQLiteOpenHelper class. So SQLiteOpenHelper class call the onCreate() method after creating database and instantiate SQLiteDatabase object. Database name is passed in constructor call.  onUpgrade(SQLiteDatabase db,int oldVersion, int newVersion) is only called whenever there is a updation in existing version. So to update a version we have to increment the value of version variable passed in the superclass constructor. In onUpgrade method we can write queries to perform whatever action is required. In most example you will see that existing table(s) are being dropped and again onCreate() method is being called to create tables again. But it’s not mandatory to do so and it all depends upon your requirements.  We have to change database version if we have added a new row in the database table. If we have requirement that we don’t want to lose existing data in the table then we can write alter table query in the onUpgrade(SQLiteDatabase db,int oldVersion, int newVersion) method.
  • 10. In this step we create a layout in our XML file adding textbox, buttons, edittext. On button onclick is defined which associate it with related function. <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/activity_main" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.sqliteoperations.MainActivity" android:background="@android:color/holo_blue_dark"> <TextView android:text="@string/username" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_marginTop="12dp" android:id="@+id/textView" android:textSize="18sp" android:textStyle="bold|italic" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:gravity="center" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10" android:id="@+id/editName" android:textStyle="bold|italic" android:layout_below="@+id/textView" android:layout_alignParentRight="true" android:layout_alignParentEnd="true" android:hint="Enter Name" android:gravity="center_vertical|center" /> <TextView android:text="@string/password" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="13dp" android:id="@+id/textView2" android:textStyle="bold|italic" android:textSize="18sp" android:layout_below="@+id/editName" android:layout_alignParentRight="true" android:layout_alignParentEnd="true" android:gravity="center" android:hint="Enter Password" /> <Button android:text="@string/view_data" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/button2" android:textSize="18sp" android:onClick="viewdata" android:textStyle="bold|italic" android:layout_alignBaseline="@+id/button" android:layout_alignBottom="@+id/button" android:layout_alignRight="@+id/button4" android:layout_alignEnd="@+id/button4" /> <Button android:text="@string/add_user" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/button" android:textStyle="bold|italic" android:textSize="18sp" android:onClick="addUser" android:layout_marginLeft="28dp" android:layout_marginStart="28dp" android:layout_below="@+id/editPass" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_marginTop="23dp" /> <Button android:text="@string/update" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/button3" android:onClick="update" android:textStyle="normal|bold" android:layout_below="@+id/editText3" android:layout_alignLeft="@+id/button4" android:layout_alignStart="@+id/button4" android:layout_marginTop="13dp" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10" android:id="@+id/editText6" android:layout_alignTop="@+id/button4" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:freezesText="false" android:hint="Enter Name to Delete Data" android:layout_toLeftOf="@+id/button2" android:layout_toStartOf="@+id/button2" /> <Button android:text="@string/delete" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginRight="21dp" android:layout_marginEnd="21dp" android:id="@+id/button4" android:onClick="delete" android:textStyle="normal|bold" tools:ignore="RelativeOverlap" android:layout_marginBottom="41dp" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" android:layout_alignParentEnd="true" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10" android:layout_marginTop="47dp" android:id="@+id/editText3" android:textStyle="bold|italic" android:textSize="14sp" android:layout_below="@+id/button" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:layout_marginLeft="7dp" android:layout_marginStart="7dp" android:hint="Current Name" /> <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:inputType="textPassword" android:ems="10" android:layout_marginTop="11dp" android:id="@+id/editPass" android:hint="Enter Password" android:gravity="center_vertical|center" android:textSize="18sp" android:layout_below="@+id/textView2" android:layout_alignParentLeft="true" android:layout_alignParentStart="true" android:textAllCaps="false" android:textStyle="normal|bold" /> <EditText android:layout_width="wrap_content" android:layout_height="wrap_content" android:inputType="textPersonName" android:ems="10" android:id="@+id/editText5" android:textStyle="bold|italic" android:textSize="14sp" android:hint="New Name" android:layout_alignTop="@+id/button3" android:layout_alignLeft="@+id/editText3" android:layout_alignStart="@+id/editText3" android:layout_marginTop="32dp" /> </RelativeLayout>
  • 11. Step 3 : Now open app -> java -> package -> MainActivity.java and add the below code. In this step we used the functions that linked via the button click. These functions are defined in other class and are used here. Each function return value that define no of rows updated, using that we defined whether operation is successful or not. Also user need to define valid data to perform operation empty fields will not be entertained and return error . package com.example.sqliteoperations; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.EditText; public class MainActivity extends AppCompatActivity { EditText Name, Pass , updateold, updatenew, delete; myDbAdapter helper; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Name= (EditText) findViewById(R.id.editName); Pass= (EditText) findViewById(R.id.editPass); updateold= (EditText) findViewById(R.id.editText3); updatenew= (EditText) findViewById(R.id.editText5); delete = (EditText) findViewById(R.id.editText6); helper = new myDbAdapter(this); } public void addUser(View view) { String t1 = Name.getText().toString(); String t2 = Pass.getText().toString(); if(t1.isEmpty() || t2.isEmpty()) { Message.message(getApplicationContext(),"Enter Both Name and Password"); } else { long id = helper.insertData(t1,t2); if(id<=0) { Message.message(getApplicationContext(),"Insertion Unsuccessful"); Name.setText(""); Pass.setText(""); } else { Message.message(getApplicationContext(),"Insertion Successful"); Name.setText(""); Pass.setText(""); } } } public void viewdata(View view) { String data = helper.getData(); Message.message(this,data); } public void update( View view) { String u1 = updateold.getText().toString(); String u2 = updatenew.getText().toString(); if(u1.isEmpty() || u2.isEmpty()) { Message.message(getApplicationContext(),"Enter Data"); } else { int a= helper.updateName( u1, u2); if(a<=0) { Message.message(getApplicationContext(),"Unsuccessful"); updateold.setText(""); updatenew.setText(""); } else { Message.message(getApplicationContext(),"Updated"); updateold.setText(""); updatenew.setText(""); } } } public void delete( View view) { String uname = delete.getText().toString(); if(uname.isEmpty()) { Message.message(getApplicationContext(),"Enter Data"); } else{ int a= helper.delete(uname); if(a<=0) { Message.message(getApplicationContext(),"Unsuccessful"); delete.setText(""); } else { Message.message(this, "DELETED"); delete.setText(""); } } } }
  • 12. Step 4: In this step create a java class myDbAdapter. java. In this we define the functions that are used to perform the operations insert, update and delete operations in SQLite. Further this class create another class that will extend the SQLiteOpenHelper. Each function carry equivalent methods that perform operations. package com.example.sqliteoperations; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.sqlite.SQLiteDatabase; import android.database.sqlite.SQLiteOpenHelper; public class myDbAdapter { myDbHelper myhelper; public myDbAdapter(Context context) { myhelper = new myDbHelper(context); } public long insertData(String name, String pass) { SQLiteDatabase dbb = myhelper.getWritableDatabase(); ContentValues contentValues = new ContentValues(); contentValues.put(myDbHelper.NAME, name); contentValues.put(myDbHelper.MyPASSWORD, pass); long id = dbb.insert(myDbHelper.TABLE_NAME, null , contentValues); return id; } public String getData() { SQLiteDatabase db = myhelper.getWritableDatabase(); String[] columns = {myDbHelper.UID,myDbHelper.NAME,myDbHelper.MyPASSWORD}; Cursor cursor =db.query(myDbHelper.TABLE_NAME,columns,null,null,null,null,null); StringBuffer buffer= new StringBuffer(); while (cursor.moveToNext()) { int cid =cursor.getInt(cursor.getColumnIndex(myDbHelper.UID)); String name =cursor.getString(cursor.getColumnIndex(myDbHelper.NAME)); String password =cursor.getString(cursor.getColumnIndex(myDbHelper.MyPASSWORD)); buffer.append(cid+ " " + name + " " + password +" n"); } return buffer.toString(); } public int delete(String uname) { SQLiteDatabase db = myhelper.getWritableDatabase(); String[] whereArgs ={uname}; int count =db.delete(myDbHelper.TABLE_NAME ,myDbHelper.NAME+" = ?",whereArgs); return count; } public int updateName(String oldName , String newName) { SQLiteDatabase db = myhelper.getWritableDatabase(); ContentValues contentValues = new ContentValues(); contentValues.put(myDbHelper.NAME,newName); String[] whereArgs= {oldName}; int count =db.update(myDbHelper.TABLE_NAME,contentValues, myDbHelper.NAME+" = ?",whereArgs ); return count; } static class myDbHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "myDatabase"; // Database Name private static final String TABLE_NAME = "myTable"; // Table Name private static final int DATABASE_Version = 1;. // Database Version private static final String UID="_id"; // Column I (Primary Key) private static final String NAME = "Name"; //Column II private static final String MyPASSWORD= "Password"; // Column III private static final String CREATE_TABLE = "CREATE TABLE "+TABLE_NAME+ " ("+UID+" INTEGER PRIMARY KEY AUTOINCREMENT, "+NAME+" VARCHAR(255) ,"+ MyPASSWORD+" VARCHAR(225));"; private static final String DROP_TABLE ="DROP TABLE IF EXISTS "+TABLE_NAME; private Context context; public myDbHelper(Context context) { super(context, DATABASE_NAME, null, DATABASE_Version); this.context=context; } public void onCreate(SQLiteDatabase db) { try { db.execSQL(CREATE_TABLE); } catch (Exception e) { Message.message(context,""+e); } } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { try { Message.message(context,"OnUpgrade"); db.execSQL(DROP_TABLE); onCreate(db); }catch (Exception e) { Message.message(context,""+e); } } } }
  • 13. Step 5: In this step create another java class Message.class In this just simply add toast for displaying message. This is optional, it is just added to again and again defining toast in the example. package com.example.sqliteoperations; import android.content.Context; import android.widget.Toast; public class Message { public static void message(Context context, String message) { Toast.makeText(context, message, Toast.LENGTH_LONG).show(); } }