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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:16:21+00:00 2026-05-31T16:16:21+00:00

The question is simple and to put it in just one line : The

  • 0

The question is simple and to put it in just one line : ” The insert() function of SQLiteDatabase for Android tries to add the values in a random way “.

Meaning :

// Database creation sql statement
private static final String DATABASE_CREATE = "create table "
        + TABLE_NAME 
        +"( "
        + COLUMN_ID + " integer primary key autoincrement, "
        + COLUMN_LATITUDE + "integer,"
        + COLUMN_LONGTITUDE + "integer,"
        + COLUMN_TITLE + "text,"
        + COLUMN_TEXT + " text not null"
        + ");";

And when i put the values and try to insert them :

values.put(COLUMN_ID, marker.getId() );
values.put(COLUMN_LATITUDE, marker.getLatitude()  ); // lat
values.put(COLUMN_LONGTITUDE, marker.getLongtitude() ); // long     
values.put(COLUMN_TITLE, marker.getTitle()  ); // Title     
values.put(COLUMN_TEXT, marker.getText() ); // Text     

// Inserting Row
        db.insert(TABLE_NAME, null, values);

but the error i got is :
E/Database(2542): android.database.sqlite.SQLiteException: table Items has no column named longtitude: , while compiling: INSERT INTO items(longtitude, text, title, latitude, _id) VALUES(?, ?, ?, ?, ?);

so i guess is tries to put the longtitude where the Id is and that causes the Error.

Is my assumption right? What do i need to change?

  • 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-31T16:16:22+00:00Added an answer on May 31, 2026 at 4:16 pm

    You have an error in your create Table statement, you’re missing some spaces before the types (integer,text), here’s the correct version:

    private static final String DATABASE_CREATE = "create table "
        + TABLE_NAME 
        +"( "
        + COLUMN_ID + " integer primary key autoincrement, "
        + COLUMN_LATITUDE + " integer,"
        + COLUMN_LONGTITUDE + " integer,"
        + COLUMN_TITLE + " text,"
        + COLUMN_TEXT + " text not null"
        + ");";
    

    Before you didn’t create a column named “longitude”. Instead “longitudeinteger” was created

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

Sidebar

Related Questions

Simple question, I know, but I can't seem to find a way to put
A simple question, I think: I want to put a tag into an ASP.NET
Very simple question. What does the term 'seeding' mean in general? I'll put the
Maybe a very simple question. How can I put in this code <Query> <Where>
Simple question here: is there any way to convert from a jagged array to
Simple question. A friend of mind wrote code similar to this one (which is
The question should be simple, but i'm thinking what the best way to do
I would like a simple way to put a JList in a column of
I'm programming a fairly simple application which I want to cut to just one
Question simple and quick: I have started to use Netbeans to write some code

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.