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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T22:41:59+00:00 2026-05-29T22:41:59+00:00

I am getting the error 02-15 08:36:13.097: I/SqliteDatabaseCpp(404): sqlite returned: error code = 1,

  • 0

I am getting the error

02-15 08:36:13.097: I/SqliteDatabaseCpp(404): sqlite returned: error
code = 1, msg = near “null”: syntax error,
db=/data/data/com.lifeApp/databases/contactsManager

on line 157 of my code. This is the section under the method

getAllContacts()

The code that isn’t working is

SQLiteDatabase db = this.getWritableDatabase();

Full example:

package com.lifeApp;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;

import java.util.ArrayList;
import java.util.List;

import android.content.ContentValues;
import android.database.Cursor;

public class DatabaseHandler extends SQLiteOpenHelper {

   // All Static variables
   // Database Version
   private static final int DATABASE_VERSION = 1;

   // Database Name
   private static final String DATABASE_NAME = "contactsManager";

   // Contacts table name
   private static final String TABLE_CONTACTS = "contacts";

   // Contacts Table Columns names
   private static final String KEY_ID = "id";
   private static final String FIRSTNAME = "firstname";
   private static final String LASTNAME = "lastname";
   private static final String PASSWORD = "password";
   private static final String EMAIL = "email";

   private static final String KEY_PH_NO = "phone_number";

private static final String KEY_NAME = null;

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

   // Creating Tables
   @Override
   public void onCreate(SQLiteDatabase db) {

       String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_CONTACTS + "("
               + KEY_ID + " INTEGER PRIMARY KEY," 
               + KEY_NAME + " TEXT,"
               + FIRSTNAME + " TEXT,"
               + LASTNAME + " TEXT,"
               + PASSWORD  + " TEXT"
               + EMAIL + " TEXT"
               + KEY_PH_NO + " TEXT" + ")";
       db.execSQL(CREATE_CONTACTS_TABLE);
   }

   // Upgrading database
   @Override
   public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
       // Drop older table if existed
       db.execSQL("DROP TABLE IF EXISTS " + TABLE_CONTACTS);

       // Create tables again
       onCreate(db);
   }

   /**
    * All CRUD(Create, Read, Update, Delete) Operations
    */

   // Adding new contact
   void addContact(Contact contact) {
       SQLiteDatabase db = this.getWritableDatabase();

       ContentValues values = new ContentValues();
       values.put(KEY_NAME, contact.getName()); // Contact Name
       values.put(FIRSTNAME, contact.getFirstname());
       values.put(LASTNAME, contact.getLastname());
       values.put(EMAIL, contact.getEmail());
       values.put(PASSWORD, contact.getPassword());
       values.put(KEY_PH_NO, contact.getPhoneNumber()); // Contact Phone

       // Inserting Row
       db.insert(TABLE_CONTACTS, null, values);
       db.close(); // Closing database connection
   }

   // Getting single contact
   Contact getContact(int id) {
       SQLiteDatabase db = this.getReadableDatabase();

       Cursor cursor = db.query(TABLE_CONTACTS, new String[] { KEY_ID,
               KEY_NAME, KEY_PH_NO }, KEY_ID + "=?",
               new String[] { String.valueOf(id) },null,null,null,null);
       if (cursor != null)
           cursor.moveToFirst();

       Contact contact = new Contact(Integer.parseInt(cursor.getString(0)),
               cursor.getString(1), cursor.getString(2), cursor.getString(3), cursor.getString(4), cursor.getString(5), cursor.getString(6));
       // return contact
       return contact;
   }

   // Getting All Contacts
   public List<Contact> getAllContacts() {
       List<Contact> contactList = new ArrayList<Contact>();
       // Select All Query
       String selectQuery = "SELECT  * FROM " + TABLE_CONTACTS;

       SQLiteDatabase db = this.getWritableDatabase();
       Cursor cursor = db.rawQuery(selectQuery, null);

       // looping through all rows and adding to list
       if (cursor.moveToFirst()) {
           do {
               Contact contact = new Contact();
               contact.setID(Integer.parseInt(cursor.getString(0)));
               contact.setFirstname(cursor.getString(1));
               contact.setLastname(cursor.getString(2));
               contact.setPassword(cursor.getString(3));
               contact.setEmail(cursor.getString(4));
               // Adding contact to list
               contactList.add(contact);
           } while (cursor.moveToNext());
       }

       // return contact list
       return contactList;
   }

   // Updating single contact
   public int updateContact(Contact contact) {
       SQLiteDatabase db = this.getWritableDatabase();

       ContentValues values = new ContentValues();
       values.put(KEY_NAME, contact.getName());
       values.put(FIRSTNAME, contact.getFirstname());
       values.put(LASTNAME, contact.getLastname());
       values.put(PASSWORD, contact.getPassword());
       values.put(EMAIL, contact.getEmail());
       values.put(KEY_PH_NO, contact.getPhoneNumber());

       // updating row
       return db.update(TABLE_CONTACTS, values, KEY_ID + " = ?",
               new String[] { String.valueOf(contact.getID()) });
   }

   // Deleting single contact
   public void deleteContact(Contact contact) {
       SQLiteDatabase db = this.getWritableDatabase();
       db.delete(TABLE_CONTACTS, KEY_ID + " = ?",
               new String[] { String.valueOf(contact.getID()) });
       db.close();
   }

   // Getting contacts Count
   public int getContactsCount() {
       String countQuery = "SELECT  * FROM " + TABLE_CONTACTS;
       SQLiteDatabase db = this.getReadableDatabase();
       Cursor cursor = db.rawQuery(countQuery, null);
       cursor.close();

       // return count
       return cursor.getCount();
   }

}
  • 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-29T22:42:00+00:00Added an answer on May 29, 2026 at 10:42 pm

    In CREATE_CONTACTS_TABLE you miss some commas

       String CREATE_CONTACTS_TABLE = "CREATE TABLE " + TABLE_CONTACTS + "("
               + KEY_ID + " INTEGER PRIMARY KEY," 
               + KEY_NAME + " TEXT,"
               + FIRSTNAME + " TEXT,"
               + LASTNAME + " TEXT,"
               + PASSWORD  + " TEXT"           <==
               + EMAIL + " TEXT"               <==
               + KEY_PH_NO + " TEXT" + ")";
       db.execSQL(CREATE_CONTACTS_TABLE);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting error in APNS implementation I used code from here http://www.easyapns.com/apple-delegate I
getting error like deny Write-File-Data While Adding the data into Sqlite. I am running
i am getting the following error: Incorrect syntax near 'cast', expected 'AS'. on this
I am getting error trying to run my asp code for executing stored proc.
I wrote following code...but i am getting Error like: Error 1 'LoginDLL.Class1.Login(string, string, string)':
hi im new to c# and was trying to code but getting error can
hi i hav a code like this in the end i m getting error
With the following code, I keep getting error C2535 when I compile. It's complaining
I'm getting error using the following code snippet jQuery(document).ready(function() { jQuery.ajax({ url: url, type:
I'm getting error C3095: 'Xunit::Extensions::InlineDataAttribute': attribute cannot be repeated in C++/CLI code but not

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.