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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T13:05:59+00:00 2026-05-23T13:05:59+00:00

I keep getting this error about my sql database NEW ERROR 07-03 01:52:08.037: ERROR/AndroidRuntime(627):

  • 0

I keep getting this error about my sql database

NEW ERROR

07-03 01:52:08.037: ERROR/AndroidRuntime(627): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.fttech.books/com.fttech.books.viewBooks}: android.database.sqlite.SQLiteException: no such column: author: , while compiling: SELECT book, author, isbn, rating FROM collection

07-03 00:15:04.807: INFO/Database(927): sqlite returned: error code = 1, msg = no such column: book

NOW I am getting this error on the new emulator

07-03 00:33:27.887: INFO/Database(384): sqlite returned: error code = 1, msg = no such table: collection

Here is my database code I used…

public class booksDbAdapter {

    private static final String DATABASE_NAME = "collection";
    private static final String DATABASE_TABLE = "collection";
    private static final int DATABASE_VERSION = 1;

    public static final String KEY_BOOK = "book";
    public static final String KEY_AUTHOR = "author";
    public static final String KEY_ISBN = "isbn";
    public static final String KEY_RATING = "rating";
    public static final String KEY_ROWID = "_id";

    private DatabaseHelper mDbHelper;
    private SQLiteDatabase mDb;

    private static final String DATABASE_CREATE =
                    " create table " + " DATABASE_TABLE " + " ("
                    + KEY_ROWID + " integer primary key autoincrement,      "
                    + KEY_BOOK + " text not null, "
                    + KEY_ISBN + " text not null, "
                    + KEY_RATING + " text not null);";

    private final Context mCtx;

    public booksDbAdapter (Context ctx){
        this.mCtx = ctx;
    }

    private static class DatabaseHelper extends SQLiteOpenHelper{
        DatabaseHelper(Context context){
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
        }

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

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            // TODO Auto-generated method stub
        }
    }
    public booksDbAdapter open() throws SQLException{
        mDbHelper =  new DatabaseHelper(mCtx);
        mDb = mDbHelper.getWritableDatabase();
        return this;
    }
    public void close(){
        mDbHelper.close();
    }

    public long createBook(String book, String author, String isbn, String rating){
        ContentValues initialValues = new ContentValues();
        initialValues.put(KEY_BOOK, book);
        initialValues.put(KEY_AUTHOR, author);
        initialValues.put(KEY_ISBN, isbn);
        initialValues.put(KEY_RATING, rating);

        return mDb.insert(DATABASE_TABLE, null, initialValues);
    }
    public boolean deleteBook(long rowId){
        return mDb.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
    }
    public Cursor fetchAllBooks(){
        return mDb.query(DATABASE_TABLE, new String[]{KEY_BOOK, KEY_AUTHOR, KEY_ISBN, KEY_RATING}, null, null, null, null, null);
    }
    public Cursor fetchBook(long rowId) throws SQLException{
        Cursor mCursor =
        mDb.query(DATABASE_TABLE, new String[]{KEY_BOOK, KEY_AUTHOR, KEY_ISBN, KEY_RATING}, KEY_ROWID + "=" +
                                rowId, null, null, null, null);

        if(mCursor != null){
            mCursor.moveToFirst();
        }
        return mCursor;

    }
    public boolean updateBook(long rowId, String book, String author, String isbn, String rating){
        ContentValues args = new ContentValues();
        args.put(KEY_BOOK, book);
        args.put(KEY_AUTHOR, author);
        args.put(KEY_ISBN, isbn);
        args.put(KEY_RATING, rating);
        return mDb.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null)> 0;
    }
}
  • 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-23T13:06:00+00:00Added an answer on May 23, 2026 at 1:06 pm

    Ah, duh, it was so obvious, you’re creating the table DATABASE_TABLE, not collection. You must have kept the quotes by mistake when refactoring:

         "create table " + " DATABASE_TABLE " + " ("
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I keep getting this error: java.lang.NoClassDefFoundError: org/apache/lucene/index/memory/MemoryIndex Is there any way i can go
OK I keep getting this error after about 3-4 minutes of churning: Timeout expired.
I keep getting this error about 20 times in my wordpress blog about the
Keep getting this error after inserting a subdatasheet into a query and trying to
I keep getting this error System.Web.HttpException was unhandled by user code Message=Validation of viewstate
I keep getting this error when I try to commit a group of executed
I keep getting this error when I try to call Find() public void findTxt(string
I keep getting this error all over the place where I only have jquery
I keep getting this error whenever I call gethostbyname() in my C code. ==7983==
I keep getting this error, although the file still gets moved into the correct

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.