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

  • Home
  • SEARCH
  • 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 7069025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T05:23:44+00:00 2026-05-28T05:23:44+00:00

i have created a simple database for inserting the list of data into my

  • 0

i have created a simple database for inserting the list of data into my sample dB but when i want to send data to database it gives me this error

01-17 15:30:43.015: ERROR/Database(822): Failure 1 (no such column: Sharma) on 0x276e50 when preparing ‘INSERT INTO friends Values(Sharma,SaiGeetha,18);””‘.

for reference i am pasting the code

sampleDB =  this.openOrCreateDatabase(SAMPLE_DB_NAME, MODE_PRIVATE, null);
                ArrayList<String>FirstName = new ArrayList<String>();
                ArrayList<String>LastName = new ArrayList<String>();
                ArrayList<Integer >Age = new ArrayList<Integer>();
                   FirstName.add("SaiGeetha");

                   FirstName.add("Vivek");
                   FirstName.add("Rahul");
                   LastName.add("Sharma");

                   LastName.add("Lilani");
                   LastName.add("Lami");
                    Age.add(18);

                   Age.add(20);
                   Age.add(23);

                sampleDB.execSQL("CREATE TABLE IF NOT EXISTS " +
                        SAMPLE_TABLE_NAME +
                        " (LastName VARCHAR, FirstName VARCHAR," +
                        "  Age INT(3));");

                for(int i=0;i<3;i++)
                {
                    sampleDB.execSQL("INSERT INTO " +


    enter code here

                        SAMPLE_TABLE_NAME +
                            " Values("+LastName.get(i)+","+FirstName.get(i)+","+Age.get(i)+");"+"\"\"");
                }

                /*sampleDB.execSQL("INSERT INTO " +
                        SAMPLE_TABLE_NAME +
                        " Values ('Makam','Sai Geetha','India',25);");
                sampleDB.execSQL("INSERT INTO " +
                        SAMPLE_TABLE_NAME +
                        " Values ('Chittur','Raman','India',25);");
                sampleDB.execSQL("INSERT INTO " +
                        SAMPLE_TABLE_NAME +
                        " Values ('Solutions','Collabera','India',20);");*/

                Cursor c = sampleDB.rawQuery("SELECT FirstName, Age FROM " +
                        SAMPLE_TABLE_NAME +
                        " where Age > 10 LIMIT 5", null);

                if (c != null ) {
                    if  (c.moveToFirst()) {
                        do {
                            String firstName = c.getString(c.getColumnIndex("FirstName"));
                            int age = c.getInt(c.getColumnIndex("Age"));
                            Log.e("---LIST FROM DATABASE--","---VALUE---"+firstName);
                            Log.e("---LIST FROM DATABASE--","---VALUE---"+age );

                        }while (c.moveToNext());
                    } 
                }
                sampleDB.close();

            } catch (SQLiteException se )
            {
                Log.e(getClass().getSimpleName(), "Could not create or Open the database");
            } finally {
                if (sampleDB != null) 
                    sampleDB.execSQL("DELETE FROM " + SAMPLE_TABLE_NAME);
                sampleDB.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-05-28T05:23:45+00:00Added an answer on May 28, 2026 at 5:23 am

    Try:

    sampleDB.execSQL("INSERT INTO " +
    SAMPLE_TABLE_NAME +
    " Values('"+LastName.get(i)+"','"+FirstName.get(i)+"',"+Age.get(i)+");");
    

    instead of the original. You need to pass String values with quotes in SQL statements. If you do not quote them it is assumed that you reference columns.

    As noted by njzk2 the usage of other methods is more appropriate. Look at this example: http://learnandroid.blogspot.com/2008/01/android-database.html. Especially the following excerpt:

    public void createRow(String code, String name) {
        ContentValues initialValues = new ContentValues();
        initialValues.put("code", code);
        initialValues.put("name", name);
        db.insert(DATABASE_TABLE, null, initialValues);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have created a simple windows service that periodically checks a remote database via
Could someone help me on this, I have created simple web services using axis2
i have a sql database, and have created a dataset for a sample table
I have created a simple website but I need to store and extract files
I have created a simple database in SQL Server Express which consists of three
I have created a simple application where I fetch questions from an Access database
I have created a simple MVC3 web site and I want to limit access
I have a requirement to create a simple database in Access to collect some
How to manually create Friendly URLs? (PHP) So I have created simple php file
I have created a simple wcf service which used the WCF Service Library template.

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.