한국어

네트워킹

온누리070 플레이스토어 다운로드
    acrobits softphone
     온누리 070 카카오 프러스 친구추가온누리 070 카카오 프러스 친구추가친추
     카카오톡 채팅 상담 카카오톡 채팅 상담카톡
    
     라인상담
     라인으로 공유

     페북공유

   ◎위챗 : speedseoul


  
     PAYPAL
     
     PRICE
     

pixel.gif

    before pay call 0088 from app


http://v4all123.blogspot.jp/2013/03/sqlite-databases-with-external-db.html


http://mobile-development-tutorial.blogspot.jp/2012/12/android-external-sqlite-database.html



SQLite Databases using External DB


This is tutorial for accessing external DB from assets folder. In android We can create sqlite database by using SQLite Database Browser. Now the question is how to access this database in source code. The answer is very simple. Store the database in assets folder that is placed in project folder.


Then we can access this database in dbhelper class using

  1. context.getAssets().open(DB_NAME);  

After this we should copy this database to our root directory. Why because our SQLiteOpenHelper reads data from root directory only. for this we have to open new empty file in root directory by using. 
  1. private String DB_PATH = "/data/data/" + context.getPackageName() + "/" + "databases/";  
  2. String DB_NAME = "database";  
  3. String outFileName = DB_PATH + DB_NAME;  
  4. OutputStream myOutput = new FileOutputStream(outFileName);  
then we have to copy our data to this empty file by using. 
  1. byte[] buffer = new byte[1024];  
  2. int length;  
  3. while ((length = myInput.read(buffer)) > 0) {  
  4. myOutput.write(buffer, 0, length);  
  5. }  

Now we can access our data from root directory db to our project easily. Sample project to implement external sqlite database access in android. 

DBHelper.java
  1. package com.android.sqlite;  
  2.   
  3. import java.io.File;  
  4. import java.io.FileOutputStream;  
  5. import java.io.IOException;  
  6. import java.io.InputStream;  
  7. import java.io.OutputStream;  
  8. import android.content.Context;  
  9. import android.database.Cursor;  
  10. import android.database.sqlite.SQLiteDatabase;  
  11. import android.database.sqlite.SQLiteOpenHelper;  
  12.   
  13. public class DBHelper extends SQLiteOpenHelper {  
  14.   
  15.  private static String DB_NAME = "database";  
  16.  private SQLiteDatabase db;  
  17.  private final Context context;  
  18.  private String DB_PATH;  
  19.   
  20.  public DBHelper(Context context) {  
  21.   super(context, DB_NAME, null1);  
  22.   this.context = context;  
  23.   DB_PATH = "/data/data/" + context.getPackageName() + "/" + "databases/";  
  24.  }  
  25.   
  26.  public void createDataBase() throws IOException {  
  27.   
  28.   boolean dbExist = checkDataBase();  
  29.   if (dbExist) {  
  30.   
  31.   } else {  
  32.    this.getReadableDatabase();  
  33.    try {  
  34.     copyDataBase();  
  35.    } catch (IOException e) {  
  36.     throw new Error("Error copying database");  
  37.    }  
  38.   }  
  39.  }  
  40.   
  41.  private boolean checkDataBase() {  
  42.   File dbFile = new File(DB_PATH + DB_NAME);  
  43.   return dbFile.exists();  
  44.  }  
  45.   
  46.  private void copyDataBase() throws IOException {  
  47.   
  48.   InputStream myInput = context.getAssets().open(DB_NAME);  
  49.   String outFileName = DB_PATH + DB_NAME;  
  50.   OutputStream myOutput = new FileOutputStream(outFileName);  
  51.   byte[] buffer = new byte[1024];  
  52.   int length;  
  53.   while ((length = myInput.read(buffer)) > 0) {  
  54.    myOutput.write(buffer, 0, length);  
  55.   }  
  56.   
  57.   // Close the streams  
  58.   myOutput.flush();  
  59.   myOutput.close();  
  60.   myInput.close();  
  61.   
  62.  }  
  63.   
  64.  public Cursor getData() {  
  65.   String myPath = DB_PATH + DB_NAME;  
  66.   db = SQLiteDatabase.openDatabase(myPath, null,  
  67.     SQLiteDatabase.OPEN_READONLY);  
  68.   Cursor c = db.rawQuery("SELECT * FROM master"null);  
  69.    // Note: Master is the one table in External db. Here we trying to access the records of table from external db.  
  70.   return c;  
  71.  }  
  72.   
  73.  @Override  
  74.  public void onCreate(SQLiteDatabase arg0) {  
  75.   // TODO Auto-generated method stub  
  76.  }  
  77.   
  78.  @Override  
  79.  public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {  
  80.   // TODO Auto-generated method stub  
  81.  }  
  82. }  

And 
ExternalDBActivity.java 
  1. package com.android.sqlite;  
  2.   
  3. import java.io.IOException;  
  4.   
  5. import android.app.Activity;  
  6. import android.database.Cursor;  
  7. import android.os.Bundle;  
  8. import android.widget.ListView;  
  9. import android.widget.SimpleCursorAdapter;  
  10.   
  11. public class ExternalDBActivity extends Activity {  
  12.  /** Called when the activity is first created. */  
  13.  DBHelper dbhelper;  
  14.   
  15.  @Override  
  16.  public void onCreate(Bundle savedInstanceState) {  
  17.   super.onCreate(savedInstanceState);  
  18.   setContentView(R.layout.main);  
  19.     
  20.   // if you use siplecursoradapter then you should have _id as one of column name and its values should be integer in your db.  
  21.   // so "_id", "columnName1", "columnName2" are column names from your db.  
  22.   String[] from = new String[] { "_id""columnName1""columnName2" };  
  23.   int[] to = new int[] { R.id.TextView1, R.id.TextView2, R.id.TextView3 };  
  24.   
  25.   dbhelper = new DBHelper(this);  
  26.   try {  
  27.    dbhelper.createDataBase();  
  28.   } catch (IOException e) {  
  29.    // TODO Auto-generated catch block  
  30.    e.printStackTrace();  
  31.   }  
  32.   
  33.   Cursor c = dbhelper.getData();  
  34.     
  35.   SimpleCursorAdapter adapter = new SimpleCursorAdapter(  
  36.     getApplicationContext(), R.layout.list, c, from, to);  
  37.     
  38.    ListView list = (ListView) findViewById(R.id.ListView1);  
  39.     
  40.    list.setAdapter(adapter);  
  41.  }  
  42. }  

main.xml 
  1. <?xml version="1.0" encoding="utf-8"?<  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="fill_parent"  
  5.     android:orientation="vertical" <  
  6.   
  7.     <ListView  
  8.         android:id="@+id/ListView1"  
  9.         android:layout_width="fill_parent"  
  10.         android:layout_height="wrap_content" <  
  11.     </ListView<  
  12.   
  13. </LinearLayout<  
list.xml 
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="match_parent"  
  4.     android:layout_height="match_parent"  
  5.     android:gravity="center" >  
  6.   
  7.     <TextView  
  8.         android:id="@+id/TextView1"  
  9.         android:layout_width="wrap_content"  
  10.         android:layout_height="wrap_content"  
  11.         android:layout_margin="10dp" />  
  12.   
  13.     <TextView  
  14.         android:id="@+id/TextView2"  
  15.         android:layout_width="wrap_content"  
  16.         android:layout_height="wrap_content"  
  17.         android:layout_margin="10dp" />  
  18.   
  19.     <TextView  
  20.         android:id="@+id/TextView3"  
  21.         android:layout_width="wrap_content"  
  22.         android:layout_height="wrap_content"  
  23.         android:layout_margin="10dp" />  
  24.   
  25. </LinearLayout>  
Related article How to create and use SQLite database dynamically 

Reduce your work by using SQLiteHelper.jar 

Thank You


조회 수 :
45969
등록일 :
2014.02.14
22:14:25 (*.251.139.148)
엮인글 :
http://www.webs.co.kr/index.php?document_srl=38764&act=trackback&key=801
게시글 주소 :
http://www.webs.co.kr/index.php?document_srl=38764
List of Articles
번호 제목 글쓴이 조회 수 추천 수 날짜
67 Mysql FOREIGN KEY admin 17541   2020-02-16
 
66 mysql db tables 별로 데이타 사용량 확인 쿼리 admin 20795   2020-02-12
 
65 [SQL] 테이블 안의 컬럼 값 변경, 수정, UPDATE admin 26902   2019-10-21
 
64 [Android] 안드로이드 - SQLiteDatabase 구현하기 admin 21590   2019-10-14
 
63 [유용][실전]Android DB 생성 및 관리 ( Cursor , Query ) 리스트뷰 admin 21310   2019-10-14
 
62 간단한 Android Sqlite 예제 ( DB생성,테이블 생성, 데이터 입력, 테이터 보여주기) admin 18621   2019-10-14
 
61 [안드로이드] SQLiteDatabase와 SQLiteOpenHelper 사용법 예제 admin 20798   2019-10-14
 
60 두테이블비교 한쪽에 없는 값 추출 mysql left right outer join 서브쿼리 값사용 admin 35584   2019-07-10
 
59 원격 IP로 MySQL(MariaDB)에 접속 방법 해법 설정 순서 admin 35928   2019-06-19
 
58 oracle download install 오라클 다운로드 설치 admin 26700   2018-05-29
 
57 숫자 날짜 문자열 문자 공간 JSON MySQL 자료형 총 정리 phpMyAdmin 자료형 admin 27454   2018-03-26
 
56 mysql procedure admin 30120   2017-11-16
 
55 Sqlite very detail easy tutorial I recommand this admin 27766   2017-09-09
 
54 mysql 로컬접속 풀고 특정 아이피 접속 허가 허락 가능 하게 설정 하는 방법 admin 29248   2017-09-05
 
53 linux command chmod 리눅스 명령어 가장 쉽게 이해하기 설명 사용자 구룹 타인 권한 admin 29688   2017-09-05
 
52 mariadb CREATE USER CREATE USER statement creates new MariaDB accounts. admin 84571   2017-09-01
 
51 MySQL 데이터 베이스 백업 및 복구 방법 admin 28751   2017-09-01
 
50 Allowing MySQL Root Login from All IP Addresses : admin 46265   2017-08-17
 
49 Installation of MySQL Database Server admin 30668   2017-08-17
 
48 mysql 쿼리 로그 남기기 (실시간) admin 33462   2015-04-15
 
47 SQL Delete records using subqueries admin 32663   2015-04-03
 
46 Mysql privilege table GRANT SELECT,INSERT,UPDATE,DELETE ON db.table admin 30789   2015-04-02
 
45 안드로이드 SQLite 속도 향상! insert Transaction admin 54602   2014-04-07
 
44 MySQL에 원격 접속 허용 여러가지 아이피 아이피대역으로 admin 154012   2014-04-02
 
43 10gR2_sles10_install file admin 35736   2014-03-18
 
42 this is final answer assets sqlite Databases trouble copy External DB, check eclips admin 41052   2014-02-18
 
41 Browse SQLite data on the Android emulator admin 44538   2014-02-15
 
40 SQLite Database Browser file admin 42051   2014-02-14
 
» SQLite Databases using External DB admin 45969   2014-02-14
http://v4all123.blogspot.jp/2013/03/sqlite-databases-with-external-db.html http://mobile-development-tutorial.blogspot.jp/2012/12/android-external-sqlite-database.html SQLite Databases using External DB This is tutorial for acc...  
38 sqlite DB copy admin 43878   2014-02-14