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.

Start Here:

package com.example.button;

import android.R;`

import android.app.Activity;

import android.app.Dialog;

import android.content.Intent;

import android.os.Bundle;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.EditText;

import android.widget.TextView;


public class sqlexample extends Activity implements OnClickListener {

    Button btn1, btn2;
    EditText et1, et2;
    TextView tv1, tv2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub

        super.onCreate(savedInstanceState);
        setContentView(com.example.button.R.layout.sqlexample);
        btn1=(Button) findViewById(com.example.button.R.id.button1);
        btn2=(Button) findViewById(com.example.button.R.id.button2);
        et1=(EditText) findViewById(com.example.button.R.id.editText1);
        et2=(EditText) findViewById(com.example.button.R.id.editText2);
        tv1=(TextView) findViewById(com.example.button.R.id.textView1);
        tv2=(TextView) findViewById(com.example.button.R.id.textView2);
        btn1.setOnClickListener(this);
        btn2.setOnClickListener(this);
    }

    public void onClick(View arg0) {
        // TODO Auto-generated method stub
        switch(arg0.getId()){
        case com.example.button.R.id.button1:
            boolean diditwork=true;
            try{
            String getname=et1.getText().toString();
            String getrank=et2.getText().toString();

            rank entry=new rank(sqlexample.this);
            entry.open();

            entry.createentry(getname,getrank);

            entry.close();
            }catch(Exception e){
                diditwork=false;
            }finally{

            if(diditwork){

            Dialog d=new Dialog(this);
            d.setTitle("Success");
            TextView tv=new TextView(this);
            tv.setText("Data Stored");
            d.setContentView(tv);
            d.show();
            }
            }


            break;
        case com.example.button.R.id.button2:
            Intent i=new Intent("com.example.button.SQLVIEW");
            startActivity(i);
            break;
        }

    }

}

Sql View Activity:

package com.example.button;

import android.app.Activity;

import android.os.Bundle;

import android.widget.TextView;


public class sqlview extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.sqlview);
        TextView tv1;
        tv1=(TextView) findViewById(R.id.textView3);
        rank entry=new rank(sqlview.this);
        entry.open();
        String data=entry.getdata();
        entry.close();
        tv1.setText(data);
    }


}

Rank Acitvity: Here only the prob occur.. there is a error while viewing a sql data

package com.example.button;

import android.content.ContentValues;

import android.content.Context;

import android.database.Cursor;

import android.database.sqlite.SQLiteDatabase;

import android.database.sqlite.SQLiteDatabase.CursorFactory;

import android.database.sqlite.SQLiteOpenHelper;

import android.widget.ArrayAdapter;


public class rank {

    public static final String KEY_ROWID = "sno";

    public static final String KEY_NAME = "name";

    public static final String KEY_RANK = "good";


    private static final String DATABASE_NAME = "Rank";

    private static final String DATABASE_TABLE = "Ranktbl";

    private static final int DATABASE_VERSION = 1;

    private DBHelper helper;
    private final Context context;
    private SQLiteDatabase database;

    private static class DBHelper extends SQLiteOpenHelper {

        public DBHelper(Context context) {
            super(context, DATABASE_NAME, null, DATABASE_VERSION);
            // TODO Auto-generated constructor stub
        }

        @Override
        public void onCreate(SQLiteDatabase db) {
            // TODO Auto-generated method stub
            db.execSQL("CREATE TABLE " + DATABASE_TABLE + " (" +
                        KEY_ROWID + " INTEGER PRIMARY KEY AUTOINCREMENT, " +
                        KEY_NAME + " TEXT NOT NULL, " +
                        KEY_RANK + "TEXT NOT NULL);"




                    );



        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
            // TODO Auto-generated method stub
            db.execSQL("DROP TABLE IF EXISTS " + DATABASE_TABLE

                    );
            onCreate(db);


        }

    }
    public rank(Context c){
        context=c;
    }
    public rank open(){
        helper=new DBHelper(context);
        database=helper.getWritableDatabase();
        return this;
    }
    public void close(){
        helper.close();
    }
    public  long createentry(String getname, String getrank) {
        // TODO Auto-generated method stub
        ContentValues  cv= new ContentValues();
        cv.put(KEY_NAME, getname);
        cv.put(KEY_RANK, getrank);
        return database.insert(DATABASE_TABLE, null, cv);
    }
    public String getdata() {
        // TODO Auto-generated method stub
        String[] col=new String[]{KEY_ROWID,KEY_NAME,KEY_RANK};
        Cursor c=database.query(DATABASE_TABLE, col, null, null, null, null, null);
        String result=" ";
        int irow=c.getColumnIndex(KEY_ROWID);
        int iname=c.getColumnIndex(KEY_NAME);
        int irank=c.getColumnIndex(KEY_RANK);
        for(c.moveToLast(); !c.isAfterLast(); c.moveToNext()){
            result=result+ c.getString(irow) + " " + c.getString(iname) + " " + c.getString(irank) + "\n";
        }
        return result;
    }


}
share|improve this question
1  
What problem you are facing? – G_S Oct 2 '12 at 6:36
1  
Could you add the stacktrace and be more specific about you error? – Korcholis Oct 2 '12 at 6:36
what error r u getting??? – Terril Thomas Oct 2 '12 at 6:41
1  
missing a space on your CREATE TABLE string. Should be KEY_RANK + " TEXT NOT NULL" instead of KEY_RANK + "TEXT NOT NULL". – Aprian Oct 2 '12 at 6:48

closed as not a real question by casperOne Oct 2 '12 at 20:26

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 0 down vote accepted
 public Data getdata(int id) {
  Cursor cursor = db.query(DATABASE_TABLE, new String[] {KEY_ROWID,
                   KEY_NAME, KEY_RANK }, KEY_ID + "=?",
                    new String[] { String.valueOf(id) }, null, null, null, null);
            if (cursor != null)
                cursor.moveToFirst();

            Data data = new Data(Integer.parseInt(cursor.getString(0)),
                    cursor.getString(1), cursor.getString(2));
            // return name
            return data;
}

Create an Activity Class and call the read data parameters using ur Model class

 txt = (TextView) findViewById(R.id.textView4);
            txt1 = (TextView) findViewById(R.id.textView5);
            txt2 = (TextView) findViewById(R.id.textView6);

            bt.setOnClickListener(new OnClickListener() {



                @Override
                public void onClick(View v) {
                    // TODO Auto-generated method stub
                    viewData();
                }

                private void viewData() {
                    // TODO Auto-generated method stub
                    try {
                        // ask the database manager for data
                        name = db.getdata(id);
                        txt.setText(name._name);
                        txt1.setText(name._rank);
    }
}

In ur onCreate(SQLitedatabase db)

public void onCreate(SQLiteDatabase db) {
            // TODO Auto-generated method stub
            db.execSQL("CREATE TABLE " + DATABASE_TABLE + " (" +
                        KEY_ROWID + " INTEGER PRIMARY KEY AUTOINCREMENT, " +
                        KEY_NAME + " TEXT NOT NULL, " +
                        KEY_RANK + " TEXT NOT NULL "+ ")");

}

share|improve this answer
please tell me whats wrong with the code?? – Terril Thomas Oct 2 '12 at 7:21
what is Name? Shouldn't getdata() return a String instead of Name? and your execSQL statement, I don't see why you need to split the TEXT NOT NULL and ). So the downvote. – Aprian Oct 2 '12 at 7:24
Name was the from my code from where i copied it .. i forgot to rectify it... My Bad :( – Terril Thomas Oct 2 '12 at 7:26
i had used a model class to set & get – Terril Thomas Oct 2 '12 at 7:27
@Aprian : & the Text not null was written incorrectly. Just check – Terril Thomas Oct 2 '12 at 7:33
show 3 more comments

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