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
Unit - IV (1).pptx
PPTX
Unit - IV.pptx
PPTX
Databases in Android Application
PDF
Android Level 2
DOCX
Android sq lite-chapter 22
DOCX
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
PPTX
Database in Android
PPTX
Data Handning with Sqlite for Android
DOCX
Android database tutorial
PPTX
android sqlite
PDF
Sql data base
PDF
Android App Development 05 : Saving Data
PPT
SQLITE Android
PPTX
Android Training (Storing data using SQLite)
PPTX
Lecture 10: Android SQLite database.pptx
ODP
Android training day 4
PPTX
Contains the SQLite database management classes that an application would use...
PPT
Sqlite
PPTX
Shshsjsjsjs-4 - Copdjsjjsjsjsjakakakaaky.pptx
PDF
Android-Chapter17-SQL-Data persistency in android databases
Unit - IV (1).pptx
Unit - IV.pptx
Databases in Android Application
Android Level 2
Android sq lite-chapter 22
ANDROID USING SQLITE DATABASE ADMINISTRATORS ~HMFTJ
Database in Android
Data Handning with Sqlite for Android
Android database tutorial
android sqlite
Sql data base
Android App Development 05 : Saving Data
SQLITE Android
Android Training (Storing data using SQLite)
Lecture 10: Android SQLite database.pptx
Android training day 4
Contains the SQLite database management classes that an application would use...
Sqlite
Shshsjsjsjs-4 - Copdjsjjsjsjsjakakakaaky.pptx
Android-Chapter17-SQL-Data persistency in android databases
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
TR - Agricultural Crops Production NC III.pdf
PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
Insiders guide to clinical Medicine.pdf
PDF
Business Ethics Teaching Materials for college
PDF
Classroom Observation Tools for Teachers
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
STATICS OF THE RIGID BODIES Hibbelers.pdf
PPTX
master seminar digital applications in india
PPTX
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PDF
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
PPTX
Pharma ospi slides which help in ospi learning
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
TR - Agricultural Crops Production NC III.pdf
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Week 4 Term 3 Study Techniques revisited.pptx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Insiders guide to clinical Medicine.pdf
Business Ethics Teaching Materials for college
Classroom Observation Tools for Teachers
human mycosis Human fungal infections are called human mycosis..pptx
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
2.FourierTransform-ShortQuestionswithAnswers.pdf
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
STATICS OF THE RIGID BODIES Hibbelers.pdf
master seminar digital applications in india
The Healthy Child – Unit II | Child Health Nursing I | B.Sc Nursing 5th Semester
Supply Chain Operations Speaking Notes -ICLT Program
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
Mark Klimek Lecture Notes_240423 revision books _173037.pdf
Pharma ospi slides which help in ospi learning
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf

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(); } }