Click here to Skip to main content
15,879,474 members
Articles / Mobile Apps / Android

A Simple Android SQLite Example

Rate me:
Please Sign up or sign in to vote.
4.81/5 (94 votes)
6 Jun 2014CPOL3 min read 710.4K   71.2K   80   115
This is a simple demonstration of using SQLite database in Android.

Image 1

Image 2

Introduction

In this article, I have attempted to demonstrate the use of SQLite database in Android in the simplest manner possible. Most of the articles and demos which I have seen on the net were not very simple for a layman to understand. Also most of the examples assume a deep knowledge of Android and SQL. This article assumes that the user has a working knowledge of Android and basic SQL commands. The example application shows how to perform basic DML and query operations on an SQLite table in Android.

Background

The example application which I have created is a simple Student Management System, which allows a user to add, delete, modify and view student details. The application accepts a student's roll number, name and marks and adds these details to a student table. For simplicity, I have created all fields of VARCHAR data type, which is a variable length character string.

Using the Code

The SQLiteDatabase class from the android.database.sqlite package and the Cursor class from the android.database package provide all the functionality required for performing Data Manipulation Language (DML) and query operations on an SQLite table.

The following code shows how to create an SQLite database and a table in the database.

Java
db=openOrCreateDatabase("StudentDB", Context.MODE_PRIVATE, null);
db.execSQL("CREATE TABLE IF NOT EXISTS student(rollno VARCHAR,name VARCHAR,marks VARCHAR);");

In the above code, the openOrCreateDatabase() function is used to open the StudentDB database if it exists or create a new one if it does not exist. The first parameter of this function specifies the name of the database to be opened or created. The second parameter, Context.MODE_PRIVATE indicates that the database file can only be accessed by the calling application or all applications sharing the same user ID. The third parameter is a Cursor factory object which can be left null if not required.

The db.execSQL() function executes any SQL command. Here it is used to create the student table if it does not already exist in the database.

Following is the full code of the onCreate() method of the main activity.

Java
public void onCreate(Bundle savedInstanceState)
{
    <code>super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

// Initializing controls

    editRollno=(EditText)findViewById(R.id.editRollno);
    editName=(EditText)findViewById(R.id.editName);
    editMarks=(EditText)findViewById(R.id.editMarks);
    btnAdd=(Button)findViewById(R.id.btnAdd);
    btnDelete=(Button)findViewById(R.id.btnDelete);
    btnModify=(Button)findViewById(R.id.btnModify);
    btnView=(Button)findViewById(R.id.btnView);
    btnViewAll=(Button)findViewById(R.id.btnViewAll);
    btnShowInfo=(Button)findViewById(R.id.btnShowInfo);

// Registering event handlers

    btnAdd.setOnClickListener(this);
    btnDelete.setOnClickListener(this);
    btnModify.setOnClickListener(this);
    btnView.setOnClickListener(this);
    btnViewAll.setOnClickListener(this);
    btnShowInfo.setOnClickListener(this);

// Creating database and table

    db=openOrCreateDatabase("StudentDB", Context.MODE_PRIVATE, null);
db.execSQL("CREATE TABLE IF NOT EXISTS student(rollno VARCHAR,name VARCHAR,marks VARCHAR);");
}

In the onClick() event handler, we can write the code required to add, delete, modify and view records.

The following code uses the db.execSQL() function to insert a student record in the student table.

Java
db.execSQL("INSERT INTO student VALUES('"+editRollno.getText()+"','"+
editName.getText()+"','"+editMarks.getText()+"');");

The above code generates an INSERT statement by appending the contents of the editable fields into a string and executes the INSERT statement.

In the same way, the DELETE command can be executed as follows:

Java
db.execSQL("DELETE FROM student WHERE rollno='"+editRollno.getText()+"'");

The above code deletes the record of the student whose roll number is entered in the editable field.

The UPDATE command can be executed as follows:

Java
db.execSQL("UPDATE student SET name='"+editName.getText()+"',marks='"+
editMarks.getText()+"' WHERE rollno='"+editRollno.getText()+"'");

The above code updates the record of the student whose roll number is entered in the editable field.

To view a student record, we execute a query using the rawQuery() method of the SQLiteDatabase class as follows:

Java
Cursor c=db.rawQuery("SELECT * FROM student WHERE rollno='"+editRollno.getText()+"'", null);
if(c.moveToFirst())
{
    editName.setText(c.getString(1));
    editMarks.setText(c.getString(2));
}

The above code uses the rawQuery() method of the SQLiteDatabase class to execute the SELECT statement to select the record of the student, whose roll number is specified. It then checks if the record is found using the moveToFirst() method of the Cursor class and displays the name and marks in the respective editable fields.

To view all records, the following code can be used:

Java
Cursor c=db.rawQuery("SELECT * FROM student", null);
if(c.getCount()==0)
{
    showMessage("Error", "No records found");
    return;
}
StringBuffer buffer=new StringBuffer();
while(c.moveToNext())
{
    buffer.append("Rollno: "+c.getString(0)+"\n");
    buffer.append("Name: "+c.getString(1)+"\n");
    buffer.append("Marks: "+c.getString(2)+"\n\n");
}
showMessage("Student Details", buffer.toString());

The above code executes the SELECT command to retrieve records of all students and appends them into a string buffer. Finally, it displays the student details using the user-defined showMessage() function.

Following is the full code of the onClick() event handler:

Java
public void onClick(View view)
{
// Adding a record
    if(view==btnAdd)
    {
    // Checking empty fields
        if(editRollno.getText().toString().trim().length()==0||
           editName.getText().toString().trim().length()==0||
           editMarks.getText().toString().trim().length()==0)
        {
            showMessage("Error", "Please enter all values");
            return;
        }
    // Inserting record
        db.execSQL("INSERT INTO student VALUES('"+editRollno.getText()+"','"+editName.getText()+
                   "','"+editMarks.getText()+"');");
        showMessage("Success", "Record added");
        clearText();
    }
// Deleting a record
    if(view==btnDelete)
    {
    // Checking empty roll number
        if(editRollno.getText().toString().trim().length()==0)
        {
            showMessage("Error", "Please enter Rollno");
            return;
        }
    // Searching roll number
        Cursor c=db.rawQuery("SELECT * FROM student WHERE rollno='"+editRollno.getText()+"'", null);
        if(c.moveToFirst())
        {
        // Deleting record if found
            db.execSQL("DELETE FROM student WHERE rollno='"+editRollno.getText()+"'");
            showMessage("Success", "Record Deleted");
        }
        else
        {
            showMessage("Error", "Invalid Rollno");
        }
        clearText();
    }
// Modifying a record
    if(view==btnModify)
    {
    // Checking empty roll number
        if(editRollno.getText().toString().trim().length()==0)
        {
            showMessage("Error", "Please enter Rollno");
            return;
        }
    // Searching roll number
        Cursor c=db.rawQuery("SELECT * FROM student WHERE rollno='"+editRollno.getText()+"'", null);
        if(c.moveToFirst())
        {
        // Modifying record if found
            db.execSQL("UPDATE student SET name='"+editName.getText()+"',marks='"+editMarks.getText()+
                    "' WHERE rollno='"+editRollno.getText()+"'");
            showMessage("Success", "Record Modified");
        }
        else
        {
            showMessage("Error", "Invalid Rollno");
        }
        clearText();
    }
// Viewing a record
    if(view==btnView)
    {
    // Checking empty roll number
        if(editRollno.getText().toString().trim().length()==0)
        {
            showMessage("Error", "Please enter Rollno");
            return;
        }
    // Searching roll number
        Cursor c=db.rawQuery("SELECT * FROM student WHERE rollno='"+editRollno.getText()+"'", null);
        if(c.moveToFirst())
        {
        // Displaying record if found
            editName.setText(c.getString(1));
            editMarks.setText(c.getString(2));
        }
        else
        {
            showMessage("Error", "Invalid Rollno");
            clearText();
        }
    }
// Viewing all records
    if(view==btnViewAll)
    {
    // Retrieving all records
        Cursor c=db.rawQuery("SELECT * FROM student", null);
    // Checking if no records found
        if(c.getCount()==0)
        {
            showMessage("Error", "No records found");
            return;
        }
    // Appending records to a string buffer
        StringBuffer buffer=new StringBuffer();
        while(c.moveToNext())
        {
            buffer.append("Rollno: "+c.getString(0)+"\n");
            buffer.append("Name: "+c.getString(1)+"\n");
            buffer.append("Marks: "+c.getString(2)+"\n\n");
        }
    // Displaying all records
        showMessage("Student Details", buffer.toString());
    }
// Displaying info
    if(view==btnShowInfo)
    {
    showMessage("Student Management Application", "Developed By Azim");
    }
}

The following user-defined function is used to display message to the user:

Java
public void showMessage(String title,String message)
{
    Builder builder=new Builder(this);
    builder.setCancelable(true);
    builder.setTitle(title);
    builder.setMessage(message);
    builder.show();
}

The following user-defined function is used to clear edit fields:

Java
public void clearText()
{
    editRollno.setText("");
    editName.setText("");
    editMarks.setText("");
    editRollno.requestFocus();
}

Points of Interest

I hope that this article will be helpful to people new to the Android platform to understand developing database applications for Android before starting to write more complex applications.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Instructor / Trainer NIIT, India
India India
I am a trainer by profession. Currently I am working with iFuture Technologies(India) as a Senior Faculty. I enjoy programming as a hobby. During my career I have seen the growth and decline of many technologies, many of them being my favorites like Flash, WPF, Windows Mobile Development. Few of my current favorites are Android, Xamarin and Python, though I also like traditional and evergreen languages like PHP, C#, Visual Basic and Java.

Apart from computers, my favorite pastime is bicycling.

Comments and Discussions

 
Questionre: A Simple Android SQLite Example Pin
DevWithJava5-Apr-16 5:59
DevWithJava5-Apr-16 5:59 
AnswerRe: re: A Simple Android SQLite Example Pin
Azim Zahir26-Apr-16 20:19
Azim Zahir26-Apr-16 20:19 
QuestionRelational Table. Pin
Member 124288021-Apr-16 7:25
Member 124288021-Apr-16 7:25 
AnswerRe: Relational Table. Pin
Azim Zahir4-Apr-16 19:24
Azim Zahir4-Apr-16 19:24 
Questionmissing dbhelper? Pin
Member 1241642128-Mar-16 23:14
Member 1241642128-Mar-16 23:14 
Questiondatabase connection for android app Pin
Member 1234097920-Feb-16 19:49
Member 1234097920-Feb-16 19:49 
QuestionUploading the saved data in the sqlite database to a remote oracle or sql server Pin
Member 1162246617-Feb-16 9:13
Member 1162246617-Feb-16 9:13 
GeneralMy vote of 5 Pin
Member 1231567511-Feb-16 0:48
Member 1231567511-Feb-16 0:48 
Works like a charm - no fuss - easy to build and test. Had to change layout since AbsoluteLayout is decrecated.
GeneralMy vote of 5 Pin
ericstarback1-Nov-15 11:15
ericstarback1-Nov-15 11:15 
QuestionSimple Android SQLite Example Pin
Member 1167124928-Sep-15 17:57
Member 1167124928-Sep-15 17:57 
AnswerRe: Simple Android SQLite Example Pin
Azim Zahir10-Oct-15 5:35
Azim Zahir10-Oct-15 5:35 
QuestionAndroid AVD (Emulator) Pin
Member 1200139421-Sep-15 13:28
Member 1200139421-Sep-15 13:28 
Questionmy code isnt working :( Pin
Member 1199778020-Sep-15 5:59
Member 1199778020-Sep-15 5:59 
AnswerRe: my code isnt working :( Pin
Member 120356875-Oct-15 20:15
Member 120356875-Oct-15 20:15 
Generalshow data in listview Pin
Member 1198069314-Sep-15 22:10
Member 1198069314-Sep-15 22:10 
Questioncode error Pin
Member 1189858110-Aug-15 2:31
Member 1189858110-Aug-15 2:31 
Questionget Details Pin
Member 1181625814-Jul-15 21:23
Member 1181625814-Jul-15 21:23 
QuestionThanks for the wonderful app Pin
Member 118261559-Jul-15 8:03
Member 118261559-Jul-15 8:03 
AnswerRe: Thanks for the wonderful app Pin
Azim Zahir27-Jul-15 19:05
Azim Zahir27-Jul-15 19:05 
QuestionFetch Pin
Member 1171721823-Jun-15 1:13
Member 1171721823-Jun-15 1:13 
AnswerRe: Fetch Pin
Azim Zahir27-Jul-15 19:14
Azim Zahir27-Jul-15 19:14 
QuestionThanks, nice article. But one warning :) Pin
FreeRider115-May-15 2:32
FreeRider115-May-15 2:32 
AnswerRe: Thanks, nice article. But one warning :) Pin
Azim Zahir18-May-15 22:09
Azim Zahir18-May-15 22:09 
GeneralRe: Thanks, nice article. But one warning :) Pin
Static Flux17-Nov-15 9:04
Static Flux17-Nov-15 9:04 
AnswerRe: Thanks, nice article. But one warning :) Pin
projectincharge21-Feb-16 20:19
projectincharge21-Feb-16 20:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.