2011-09-24 5 views
3

내 SQLite 데이터베이스에서 ListView을 채우려고합니다. 배열을 사용하여이를 수행하는 방법을 알고 있습니다. 내 데이터베이스 클래스의 쿼리 클래스에 일부 수정이 필요합니다. 쿼리 및 데이터베이스 생성자에 대한 전체 라이브러리 및 클래스 코드가 필요합니다. 여기데이터베이스에서 문자열 및 ListView 채우기

package com.sqlite.www; 

import java.io.FileOutputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.io.OutputStream; 

import android.content.Context; 
import android.database.SQLException; 
import android.database.sqlite.SQLiteDatabase; 
import android.database.sqlite.SQLiteException; 
import android.database.sqlite.SQLiteOpenHelper; 

public class DataBaseHelper extends SQLiteOpenHelper { 

    //The Android s default system path of your application database. 
    private static String DB_PATH = "/data/data/com.sqlite.www/databases/"; 
    private static String DB_NAME = "TheProjectDatabase.sqlite"; 
    private SQLiteDatabase myDataBase; 
    private final Context myContext; 

    /** 
    * Constructor 
    * Takes and keeps a reference of the passed context in order to access to the application assets and resources. 
    * @param context 
    */ 
    public DataBaseHelper(Context context) { 

     super(context, DB_NAME, null, 1); 
     this.myContext = context; 
    } 

    /** 
    * Creates a empty database on the system and rewrites it with your own database. 
    * */ 
    public void createDataBase() throws IOException{ 

     boolean dbExist = checkDataBase(); 

     if(dbExist){ 
      //do nothing - database already exist 
     }else{ 
      //By calling this method and empty database will be created into the default system path 
      //of your application so we are gonna be able to overwrite that database with our database. 
      this.getReadableDatabase(); 
      try { 
       copyDataBase(); 
      } catch (IOException e) { 
       throw new Error("Error copying database"); 
      } 
     } 
    } 

    /** 
    * Check if the database already exist to avoid re-copying the file each time you open the application. 
    * @return true if it exists, false if it doesn't 
    */ 
    private boolean checkDataBase(){ 

     SQLiteDatabase checkDB = null; 

     try{ 
      String myPath = DB_PATH + DB_NAME; 
      checkDB = SQLiteDatabase.openDatabase(myPath, null, SQLiteDatabase.OPEN_READONLY); 
     }catch(SQLiteException e){ 
     //database does't exist yet. 
     } 

     if(checkDB != null){ 
      checkDB.close(); 
     } 

     return checkDB != null ? true : false; 
    } 

    /** 
    * Copies your database from your local assets-folder to the just created empty database in the 
    * system folder, from where it can be accessed and handled. 
    * This is done by transfering bytestream. 
    * */ 
    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; 

     //Open the empty db as the output stream 
     OutputStream myOutput = new FileOutputStream(outFileName); 

     //transfer bytes from the inputfile to the 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_READONLY); 
    } 

    @Override 
    public synchronized void close() { 
     if(myDataBase != null) 
      myDataBase.close(); 
     super.close(); 
    } 

    @Override 
    public void onCreate(SQLiteDatabase db) { 

    } 

    @Override 
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { 

    } 

    // Add your public helper methods to access and get content from the database. 
    // You could return cursors by doing "return myDataBase.query(....)" so it'd be easy 
    // to you to create adapters for your views. 
} 

를 데이터베이스가 생성되는 위치입니다 :

public class SQLiteActivity extends Activity { 
    /** Called when the activity is first created. */ 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 

     DataBaseHelper myDbHelper ; 
     myDbHelper = new DataBaseHelper(this); 

     try { 
      myDbHelper.createDataBase(); 
     } catch (IOException ioe) { 
      throw new Error("Unable to create database"); 
     } 
     try { 
      myDbHelper.openDataBase(); 
     }catch(SQLException sqle){ 
      throw sqle; 
     } 
    } 
} 

어떤 제안에 나는 또한 코드는 아래에서 알 수 있듯이 내 자신의 데이터베이스에서 쿼리를 사용하여 ListView 활동을 생성하는 코드를 찾고 있어요 이 문제를 해결하는 방법?

답변

1

SimpeCursorAdapter은 찾고 계신 어댑터 일 수 있습니다.

업데이트 코멘트에 따라 (데이터를 조회하는 방법)

private Cursor queryData() { 
    return myDataBase.query(
     "tableName", 
     new String[] {"list", "of", "colums", "to", "select"}, 
     "columnName = ?", // your where condition 
     new String[] {"your ? repleacements"}, 
     null, // no group by 
     null, // no having 
     null); // on order by 
} 
+0

나는 간단한 쿼리를 구현해야합니다 (주제에서 이름을 선택합니다 어디 isSuperTopic = 'TRUE') 첫 번째 단계에서,이 쿼리 출력 난 후 목록보기를 생성하려고합니다. – hammadghulamkhan

+0

아, 알았습니다 ... 대답을 업데이트했습니다. – Knickedi

+0

커서로 선택한 모든 요소를 ​​가지고 문자열이 필요합니다. 위 커서 개체를 문자열 soo로 변환하여 목록을 채울 수 있습니다. – hammadghulamkhan

관련 문제