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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T20:56:35+00:00 2026-05-27T20:56:35+00:00

I am working on a contact list application I need to create 2 tables

  • 0

I am working on a contact list application I need to create 2 tables because I want to make a join. I am trying to make 2 tables in my database but I get some error when creating a ‘create view’.

This is the stacktrace that I get:

01-04 21:24:32.132: E/Database(4183):           Failure 1 (near "EXIST": syntax error) on 0x123c38 when preparing 'CREATE VIEW IF NOT EXIST ViewGroups AS SELECT contactTest1._id AS _id, contactTest1.name, contactTest1.phone, contactTest2.numegrup FROM contactTest1 JOIN contactTest2 ON contactTest1.idgrup =contactTest2._id'.
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   Couldn't open contacte.db for writing (will try read-only):
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   android.database.sqlite.SQLiteException: near "EXIST": syntax error: CREATE VIEW IF NOT EXIST ViewGroups AS SELECT contactTest1._id AS _id, contactTest1.name, contactTest1.phone, contactTest2.numegrup FROM contactTest1 JOIN contactTest2 ON contactTest1.idgrup =contactTest2._id
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.database.sqlite.SQLiteDatabase.native_execSQL(Native Method)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1727)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at org.example.dbcontactconsole.DbCreate.onCreate(DbCreate.java:42)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:106)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:158)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at org.example.dbcontactconsole.DbContactConsole.getContacts(DbContactConsole.java:204)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at org.example.dbcontactconsole.DbContactConsole.showDatabaseContent(DbContactConsole.java:215)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at org.example.dbcontactconsole.DbContactConsole.onCreate(DbContactConsole.java:45)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2627)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.ActivityThread.access$2300(ActivityThread.java:125)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.os.Handler.dispatchMessage(Handler.java:99)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.os.Looper.loop(Looper.java:123)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at android.app.ActivityThread.main(ActivityThread.java:4627)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at java.lang.reflect.Method.invokeNative(Native Method)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at java.lang.reflect.Method.invoke(Method.java:521)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
01-04 21:24:32.251: E/SQLiteOpenHelper(4183):   at dalvik.system.NativeStart.main(Native Method)

Here’s the code for the database that I created:

public class DbCreate extends SQLiteOpenHelper{
    private static final String DB_NAME = "contactsdataase.db";
    private static final int DB_VERSION = 2;

    /** Create a helper object for the Events database */
    public DbCreate(Context context) { 
      super(context, DB_NAME, null,DB_VERSION); 
    }

    @Override
    public void onCreate(SQLiteDatabase db) { 
        db.execSQL("CREATE TABLE " + DbConstants.TABLE_NUME + " " +
            "(" + DbConstants.Group_ID + " INTEGER PRIMARY KEY , " + 
                  DbConstants.GROUP_NAME+");");
        db.execSQL("CREATE TABLE " + DbConstants.TABLE_NAME + " " +
            "(" + _ID + " INTEGER PRIMARY KEY AUTOINCREMENT, " + 
                  DbConstants.NAME + " TEXT NOT NULL," + 
                  DbConstants.PHONE + " TEXT NOT NULL," +
                  DbConstants.EMAIL + " TEXT NOT NULL," +
                  DbConstants.URL_STRING+ " TEXT NOT NULL,"+
                  DbConstants.ADRESS+ " TEXT NOT NULL,"+
                  DbConstants.Grupid+ "INTEGER NOT NULL ,FOREIGN KEY ("+DbConstants.Grupid+") REFERENCES "+DbConstants.TABLE_NUME+" ("+DbConstants.Group_ID+"));");

               db.execSQL("CREATE TRIGGER fk_empdept_deptid " +
            " BEFORE INSERT "+
            " ON "+DbConstants.NAME+
            " FOR EACH ROW BEGIN"+
            " SELECT CASE WHEN ((SELECT "+DbConstants.Group_ID+" FROM "+DbConstants.TABLE_NUME+" WHERE "+DbConstants.Group_ID+"=new."+DbConstants.Grupid+" ) IS NULL)"+
            " THEN RAISE (ABORT,'Foreign Key Violation') END;"+
        db.execSQL("CREATE VIEW IF NOT EXIST "+viewEmps+
        " AS SELECT "+employeeTable+"."+colID+" AS _id,"+
        " "+employeeTable+"."+colName+","+
        " "+employeeTable+"."+colAge+","+
        " "+deptTable+"."+colDeptName+""+
        " FROM "+employeeTable+" JOIN "+deptTable+
        " ON "+employeeTable+"."+colDept+" ="+deptTable+"."+colDeptID
        );          "  END;");     
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS " + DbConstants.TABLE_NUME);
        db.execSQL("DROP TABLE IF EXISTS " + DbConstants.TABLE_NAME);
        onCreate(db);
    }
}
  • 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-27T20:56:36+00:00Added an answer on May 27, 2026 at 8:56 pm

    It should be exists instead of exist (notice the “s” at the end).

    For a full reference view http://www.sqlite.org/lang_createview.html

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

Sidebar

Related Questions

Iam working on a contact list application i need to do 2 table because
Hi im working on iphone application using monotouch im trying to get list of
I am working on a contact list project and the last thing i need
I am working at a contacl list database application and when i click on
I am working on a contact list application and i am getting an error
I am working on a contact list project in android and i want to
For the current Android application I'm working on, I'm looking to create a tcp
The application that I'm working on is going to be used to create charts
I have a application already working fine. I need to implement a quick search
I am working on an application in which i need to fetch all the

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.