如何显示SQLite数据库表? [英] how to display SQLite DataBase table?

查看:105
本文介绍了如何显示SQLite数据库表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的应用程序,我使用的数据库中显示某些用户信息,我使用SQLite数据库浏览器创建的数据的基础上,并放置在资产文件夹中的数据库,这是编码,我要显示该表

in my app i am using the database for displaying some user information, i created data base by using the SQLite DataBase Browser, and placed that database in the assets folder, this is the coding for that, i want to display this table.

public class DataBaseHelper extends SQLiteOpenHelper{   
private Context mycontext;
private String DB_PATH = "/data/data/com.slate.game/databases/";    
private static String DB_NAME = "slider.db";//the extension may be .sqlite or .db
public SQLiteDatabase myDataBase;    
public DataBaseHelper(Context context) throws IOException  {
    super(context,DB_NAME,null,1);
    this.mycontext=context;
    boolean dbexist = checkdatabase();
    if(dbexist)  {
        System.out.println("Database exists");
        opendatabase(); 
    }
    else {
        System.out.println("Database doesn't exist");
        createdatabase();
    }
    }
    public void createdatabase() throws IOException{
     boolean dbexist = checkdatabase();
     if(dbexist)   {
        System.out.println(" Database exists.");
    }
    else{ this.getReadableDatabase();
    try{
        copydatabase();
    }
    catch(IOException e)  {
        throw new Error("Error copying database");
      }
     }
    }   
private boolean checkdatabase() {    
    boolean checkdb = false;
    try  {
        String myPath = DB_PATH + DB_NAME;
        File dbfile = new File(myPath);
        checkdb = dbfile.exists();
    }
    catch(SQLiteException e)   {
        System.out.println("Database doesn't exist");
    }
    return checkdb;
}   
private void copydatabase() throws IOException {
    //Open your local db as the input stream
    InputStream myinput = mycontext.getAssets().open(DB_NAME);
    // Path to the just created empty db
    String outfilename = DB_PATH + DB_NAME;
    System.out.println("outfilename"+outfilename);
    //Open the empty db as the output stream
    OutputStream myoutput = new FileOutputStream("/data/data/com.slate.game/databases/slider.db");
    // transfer byte to inputfile to outputfile
    byte[] buffer = new byte[1024];
    int length;
    while ((length = myinput.read(buffer))>0)   {
        myoutput.write(buffer,0,length);
    }
    //Close the streams
    myoutput.flush();
    myoutput.close();
    myinput.close();
}
public void opendatabase() throws SQLException  {
    //Open the database
    String mypath = DB_PATH + DB_NAME;
    myDataBase = SQLiteDatabase.openDatabase(mypath, null, SQLiteDatabase.OPEN_READWRITE);
}
public synchronized void close()  {
    if(myDataBase != null){
        myDataBase.close();
    }
    super.close();
}
@Override
public void onCreate(SQLiteDatabase arg0)  {         
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {       
}

请帮助我如何显示这个表(数据库)。

please help me how to display this table(database)..

推荐答案

最后我得到的答案从本书

finally i got answer from this BOOK

Beginning.Android.Application.Development.

使用SQLite的我prepared数据库中,我会行的,并显示使用TableLayout与TextView的。

using the SQLite i prepared database from that i will get row's and display using the TableLayout with TextView..

这是数据库适配器类

public class DBAdapter3x3  {

public static final String KEY_ROWID = "_id";
public static final String KEY_NAME = "name";
public static final String KEY_MOVES = "moves";
public static final String KEY_TIME = "time";
private static final String TAG = "DBAdapter";
private static final String DATABASE_NAME = "SliderDB3x3.db";
private static final String DATABASE_TABLE = "topscore3x3"; 
private static final int DATABASE_VERSION = 1;
private static final String DATABASE_CREATE = "create table topscore3x3 " +
                                        "(_id integer primary key autoincrement, "
                                        + "name text not null, moves integer not null," 
                                        + "time text not null);";

private final Context context;
private DatabaseHelper DBHelper;
private SQLiteDatabase db;

public DBAdapter3x3(Context ctx)    {
    this.context = ctx;
    DBHelper = new DatabaseHelper(context);
}

private static class DatabaseHelper extends SQLiteOpenHelper    {

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

    @Override
    public void onCreate(SQLiteDatabase db)   {
        try  {
            db.execSQL(DATABASE_CREATE);
        } catch (SQLException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)   {
        Log.w(TAG, "Upgrading database from version " + oldVersion + " to "
                + newVersion + ", which will destroy all old data");
        db.execSQL("DROP TABLE IF EXISTS contacts");
        onCreate(db);
    }
}

//---opens the database---
public DBAdapter3x3 open() throws SQLException      {

    db = DBHelper.getWritableDatabase();
    return this;
}

//---closes the database---
public void close()   {
    DBHelper.close();
}

//---insert a contact into the database---
public long insertContact(String name, int moves,String time)   {

    ContentValues initialValues = new ContentValues();
    initialValues.put(KEY_NAME, name);
    initialValues.put(KEY_MOVES, moves);
    initialValues.put(KEY_TIME, time);
    return db.insert(DATABASE_TABLE, null, initialValues);
}

//---deletes a particular contact---
public boolean deleteContact(long rowId)    {

    return db.delete(DATABASE_TABLE, KEY_ROWID + "=" + rowId, null) > 0;
}

//---retrieves all the contacts---
public Cursor getAllContacts()  {

    return db.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_NAME,
            KEY_MOVES, KEY_TIME}, null, null, null, null, null);
}

//---retrieves a particular contact---
public Cursor getContact(long rowId) throws SQLException    {

    Cursor mCursor = db.query(true, DATABASE_TABLE, new String[] {KEY_ROWID, KEY_NAME, 
                     KEY_MOVES, KEY_TIME}, KEY_ROWID + "=" + rowId, null,null, null, null, null);
    if (mCursor != null) {
        mCursor.moveToFirst();
    }
    return mCursor;
}

//---updates a contact---
public boolean updateContact(long rowId, String name, int moves, String time)   {

    ContentValues args = new ContentValues();
    args.put(KEY_NAME, name);
    args.put(KEY_MOVES, moves);
    args.put(KEY_TIME, time);       
    return db.update(DATABASE_TABLE, args, KEY_ROWID + "=" + rowId, null) > 0;
}
//public Cursor fetchAllNotes() {


public Cursor SortAllRows() {
    return db.query(DATABASE_TABLE, new String[] { KEY_ROWID, KEY_NAME, 
             KEY_MOVES,KEY_TIME}, null, null, null, null, KEY_MOVES + " ASC");
}
}

我在这个活动中使用的数据库

i used database in this activity

public class TopScore3x3 extends Activity  {

private DBAdapter3x3 db;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.db3x3);      

    db = new DBAdapter3x3(this);        
    getall();    
    delete();

private void delete()  {

    db.open();       
    Cursor c = db.SortAllRows();
    int i=1;
    if (c.moveToFirst())   {        
        do {            
            if(i>10) { db.deleteContact(i); } 
            i++;
        } while (c.moveToNext());
    }
    c.close();
    db.close();
}   

private void getall()  {
    //---get all contacts---
    db.open();
    //db.fetchAllNotes();
    Cursor c = db.SortAllRows();
    int i=1;
    if (c.moveToFirst())   {        
        do {
            DisplayContact(c,i++);
        } while (c.moveToNext());
    }
    c.close();
    db.close();
} 

public void DisplayContact(Cursor c,int row )   {            

     String name11 = c.getString(1) + c.getString(2) + c.getString(3);           
     tv1.setText(name11 );

  }
 } 

这篇关于如何显示SQLite数据库表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆