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;
}
}
CREATE TABLEstring. Should beKEY_RANK + " TEXT NOT NULL"instead ofKEY_RANK + "TEXT NOT NULL". – Aprian Oct 2 '12 at 6:48