Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Guys i am getting an syntax error . I know its simple but i am not able to find the error . plz help. It has got to do something with paranthesis but idont get the error.

package com.pdd.sqlite;

import java.util.ArrayList;

import android.app.Activity;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;

public class SqliteDemoActivity extends Activity implements OnClickListener {
    SQLiteDatabase db ;
    ArrayList<String> al;
    ArrayAdapter<String> aa;
    ListView lv;
    Button add;
    Button remove;
    String username;
    EditText user;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

    lv=(ListView) findViewById(R.id.listView1);
    al=new ArrayList<String>();
    aa=new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,al);
    lv.setAdapter(aa);

    add=(Button) findViewById(R.id.add);
    remove=(Button) findViewById(R.id.remove);
    user=(EditText) findViewById(R.id.username);

    username=user.getText().toString();

    add.setOnClickListener(this);
    remove.setOnClickListener(this);

    db = openOrCreateDatabase("MyDb", MODE_PRIVATE, null);

    db.execSQL("create TABLE if not exists users (name varchar);");

    //db.execSQL("insert into users values('harsha')");

    getdata();

   // db.close();
}

void getdata()
{
    Cursor c=db.rawQuery("select * from users", null);
    //int i=0;
    if(c.getCount()<=0)
        return;

    Log.d("Count",Integer.toString(c.getCount()));
    if(c.moveToFirst())
    {
        do
        {
        //i++;


        al.add(c.getString(c.getColumnIndex("name")));
        //Log.d("user",c.getString(0));


        }
        while(c.moveToNext());
    }
    for(int i=0;i<al.size();i++)
        Log.d("User",al.get(i));

    aa.notifyDataSetChanged();
}

public void onClick(View v)
{

    switch (v.getId())
    {
    case R.id.add:
        String sql="insert into users values (";
        sql=sql+username;
        sql=sql+");";
        db.execSQL(sql);
        break;

    case R.id.remove:
        break;
    }

}

}

I am sry to put the entire code. I had to do that as i was not allowed to put only d insertion code.

here is d log of the error

04-08 03:32:12.477: E/AndroidRuntime(30231): FATAL EXCEPTION: main
04-08 03:32:12.477: E/AndroidRuntime(30231): android.database.sqlite.SQLiteException: near ")": syntax error: insert into users values();
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.database.sqlite.SQLiteDatabase.native_execSQL(Native Method)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.database.sqlite.SQLiteDatabase.execSQL(SQLiteDatabase.java:1727)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at com.pdd.sqlite.SqliteDemoActivity.onClick(SqliteDemoActivity.java:93)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.view.View.performClick(View.java:2408)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.view.View$PerformClick.run(View.java:8816)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.os.Handler.handleCallback(Handler.java:587)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.os.Handler.dispatchMessage(Handler.java:92)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.os.Looper.loop(Looper.java:123)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at android.app.ActivityThread.main(ActivityThread.java:4627)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at java.lang.reflect.Method.invokeNative(Native Method)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at java.lang.reflect.Method.invoke(Method.java:521)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
04-08 03:32:12.477: E/AndroidRuntime(30231):    at dalvik.system.NativeStart.main(Native Method)
share|improve this question
Please post your error message/logcat – Kuffs Apr 7 '12 at 21:53
you have to ask more clearly. what's the exact error or at least let the viewers focus on the exact query that's failing. – onur güngör Apr 7 '12 at 21:53

closed as too localized by Tim Post Apr 9 '12 at 5:11

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

First I think you need to import following.

import java.util.ArrayList;
share|improve this answer
He already has that line, it's just not part of the code block. – Waynn Lue Apr 7 '12 at 21:59
String sql="insert into users values ("; sql=sql+username; sql=sql+");"; db.execSQL(sql); The error is with formatting of query. – Pratik Apr 7 '12 at 22:01
Got the answer made the following change String sql="insert into users values('"+username+"');"; – Pratik Apr 7 '12 at 22:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.