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 7912545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T13:38:21+00:00 2026-06-03T13:38:21+00:00

i am try to insert user and pass to login table it shows an

  • 0

i am try to insert user and pass to login table it shows an error, i am passing username,password as construtor to database class. now i want to insert username and password to login page

             public class Database extends SQLiteOpenHelper{

private static final String DATABASE_NAME = "sample";
private static final int DATABASE_VERSION = 1;
private static final String INSPECTION_CREATE = "CREATE TABLE IF NOT EXISTS login ("
                        + "username TEXT," + "password TEXT);";



public Database(Context context) {
    super(context, DATABASE_NAME, null, DATABASE_VERSION);

    // TODO Auto-generated constructor stub
}

@Override
public void onCreate(SQLiteDatabase db) {
    // TODO Auto-generated method stub

}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
    // TODO Auto-generated method stub
    db.execSQL("DROP TABLE IF EXISTS login");

}
 public void insert_datas(String user,String pass,String table_name){
        SQLiteDatabase db=this.getWritableDatabase();//in this line error comes

         ContentValues initialValues = new ContentValues();

            initialValues.put("user",user);
            initialValues.put("pass",pass);
            long n = db.insert(table_name,user,initialValues);

            System.out.println("n"+n);
            db.close();
    }

}

  • 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-06-03T13:38:22+00:00Added an answer on June 3, 2026 at 1:38 pm

    You haven’t created your database… the onCreate method is empty, nor do I see you use your table creation string anywhere else.

    @Override
    public void onCreate(SQLiteDatabase db) {
        db.execSQL(INSPECTION_CREATE);
    }
    

    Your onUpgrade needs a little help too (it’ll delete the table but not re-create it):

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        // TODO Auto-generated method stub
        db.execSQL("DROP TABLE IF EXISTS login");
        onCreate(db);
    }
    

    Hope this helps!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting an error when I try to insert an item into a
I have the following table. When i try to insert records using LINQ to
I have a DAO class which I'm using to try select/update/insert with hibernate and
I have 2 insert triggers, that fire on same table, they both try to
I want to insert the data in a SQLite table login when a button
I've hashed the password and then I'll insert it to the database but the
I try to insert into table with sequence .nextval as primary key, the sql
I have the following Exception when i'm try to insert values in the database.
I'm working on a PHP class method to insert form values into mysql database
I'm working with page template in WordPress (don't matter). I'll try insert a picture

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.