Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6385289
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T02:52:50+00:00 2026-05-25T02:52:50+00:00

Hi, I want to create a sqlite database for use in an Android application

  • 0

Hi,

I want to create a sqlite database for use in an Android application to store data for offline use. When there is no internet connectivity my application will show some data from this sqlite DB. Any pointers, where I should begin with?

Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T02:52:51+00:00Added an answer on May 25, 2026 at 2:52 am
    public class DatabaseHelper extends SQLiteOpenHelper  {
        public DatabaseHelper(Context context) {
            super(context, "DATABASE_NAME", null, 1);
        }
    
        @Override
        public void onCreate(SQLiteDatabase db) {
            db.execSQL("CREATE TABLE yourTable ("
                    + "id INTEGER PRIMARY KEY, "
                    + "name TEXT NOT NULL);");
        }
    
        @Override
        public void onUpgrade(SQLiteDatabase db, int o, int arg2) {
            db.execSQL("DROP TABLE IF EXISTS yourTable");
            onCreate(db);
        }
    
        public void insertMethod(String name) {
            SQLiteDatabase db = getWritableDatabase();
            String insertQuery = "INSERT INTO yourTable (name) VALUES(?)";
            SQLiteStatement stmt = db.compileStatement(insertQuery);
            stmt.bindString(1, name);
            stmt.execute();
            stmt.close();
            db.close();
        }
    
        public String getMethod() {
            String name;
            SQLiteDatabase db = getReadableDatabase();
            String selectQuery = "SELECT name FROM yourTable LIMIT 1";
            Cursor cur = db.rawQuery(selectQuery, null);
            cur.moveToFirst();
    
            if(cur.isAfterLast() == false)
                name= cur.getString(0);
    
            cur.close();
            db.close();
            return name;
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use SQLite within my MFC application. for that, i'll create an
Today I use SQLite and send a database-file with the project. However I want
I've just started using SQLite and I want to write all my application data
I am developing an Android application using SQLite as backend. I want to make
I want to create a SQLite database in my app, which contains three tables,
I have a distributed java application and I want to send the database data
I need to use a database on an Android application, since when in use
I want to create an application where there is a button and each time
I am working on Mac OS X, I want to create a new SQLite
I want to create a Java application bundle for Mac without using Mac. According

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.