溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

android 本地?cái)?shù)據(jù)庫(kù)sqlite的封裝

發(fā)布時(shí)間:2020-06-17 13:32:05 來源:網(wǎng)絡(luò) 閱讀:1187 作者:xsster 欄目:數(shù)據(jù)庫(kù)

 單機(jī)android   sqlite數(shù)據(jù)庫(kù)的實(shí)現(xiàn),這個(gè)數(shù)據(jù)庫(kù)可與程序一起生成在安裝包中

一、下載sqlite3.exe文件

二、運(yùn)行 cmd 轉(zhuǎn)到sqlite3.exe 所在目錄  運(yùn)行 sqlite3.exe 數(shù)據(jù)庫(kù)名.db

    然后會(huì)出現(xiàn)sqlite>的命令提示符

    輸入創(chuàng)建表的語句, create table 表名(‘列’,‘列’。。。);(注意: 要在結(jié)束部分加  分號(hào) )

    此時(shí)會(huì)在sqlite3.exe 所在目錄,出現(xiàn)所建數(shù)據(jù)庫(kù)的文件

三、如果想在Android中運(yùn)行的話,需要在數(shù)據(jù)庫(kù)中增添

 CREATE TABLE "android_metadata" ("locale" TEXT DEFAULT 'zh_CN')
INSERT INTO "android_metadata" VALUES ('zh_CN')

四、將數(shù)據(jù)庫(kù) 復(fù)制到 Android項(xiàng)目中res/raw中

五、下面是代碼:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
public class TestSqlDatabase{
     
    private static final String DATABASE_PATH = "/data/data/your.package.name/databases";     //此處不要改動(dòng),這個(gè)為數(shù)據(jù)庫(kù)在手機(jī)上的物理地址
    private static final int DATABASE_VERSION = 0;
    private static final String DATABASE_NAME = "test.db";  //此處為數(shù)據(jù)庫(kù)名稱
     
    private static String outFileName = DATABASE_PATH + "/" + DATABASE_NAME;
     
    private Context context;
     private SQLiteDatabase database;
     
    public TestSqlDatabase(Context context) {
        this.context = context;
         
        File file = new File(outFileName);
        if (file.exists()) {
            database = SQLiteDatabase.openOrCreateDatabase(outFileName, null);
            if (database.getVersion() != DATABASE_VERSION) {
                database.close();
                file.delete(); 
            }
        }
        try {
            buildDatabase();
        } catch (Exception e) {
            e.printStackTrace();
        }
         
    }
    private void buildDatabase() throws Exception{
        InputStream myInput = context.getResources().openRawResource(R.raw.test);
        File file = new File(outFileName);
         
        File dir = new File(DATABASE_PATH);
        if (!dir.exists()) {
            if (!dir.mkdir()) {
                throw new Exception("創(chuàng)建失敗");
            }
        }
         
        if (!file.exists()) {          
            try {
                OutputStream myOutput = new FileOutputStream(outFileName);
                 
                byte[] buffer = new byte[1024];
                int length;
                while ((length = myInput.read(buffer))>0){
                    myOutput.write(buffer, 0, length);
                }
                myOutput.close();
                myInput.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
         
        }
    }
 
/**
 * 查找
 * @return
 */
public Cursor select() {
     database = SQLiteDatabase.openOrCreateDatabase(outFileName, null);
     String sql = "select * from note_table";
         
     Cursor cursor = database.rawQuery(sql, null);
     return cursor;
}
/**
 * 插入
 * @param word
 * @param note
 * @return
 */
public long insert(String word, String note) {
      database = SQLiteDatabase.openOrCreateDatabase(outFileName, null);
      ContentValues cv = new ContentValues();
      cv.put("word", word);
      cv.put("note", note);
             
      long result = database.insert("note_table", null, cv);   
      return result;
}
  
  
 
/**
 * 更新
 * @param word
 * @param note
 * @return
     */
    private int update(String word, String note) {                            //參數(shù) word 為修改條件   note為修改內(nèi)容
        database = SQLiteDatabase.openOrCreateDatabase(outFileName, null);
         
        ContentValues cv = new ContentValues();
        cv.put("note", note);
         
        int result = database.update("note_table", cv, "word=?", new String[]{word});    
         
        return result;
    }
  
 
/**
 * 刪除
 * @param word
 */
public int deleteNote(String word) {
      database = SQLiteDatabase.openOrCreateDatabase(outFileName, null);
      int result = database.delete("note_table", "word=?", new String[]{word});
      return result;
}
  
     
public void close() {
      database.close();
}
 
 
}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI