LitePal开源数据库的创建

LitePal开源数据库的创建

#LitePal开源数据库的创建

##创建
第一步
编辑app/build.gradle文件,在dependencies闭包中添加implementation ‘org.litepal.android:java:3.0.0’
这样就成功地将Litepal成功引入了

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'org.litepal.android:java:3.0.0'
}

第二步
配置litepal.xml文件
有机app/src/main目录>New>Directory,创建一个assets目录,然后在此目录下创建一个litepal.xml文件
文件编辑内编辑内容



    
    
    
    
    
    
        
    

dbname 用于指定数据库名
version 用于指定数据库版本号,用于数据库的升级(当创建新表时版本号+1)
class="com.example.sql_test.Person"中com.example.sql_test为包名,Person为类名(完整的类名)。《此标签在完成表的创建后再加入》

第三步
配置LitePalApplication在AndroidMainifest.xml中application模块加入代码

android:name="org.litepal.LitePalApplication"

第四步
创建表,在键入成员后使用更快捷创建,避免使用时出问题
方法一:选中成员,然后Alt+Insert
方法二:选中成员,然后右击>Generate
最后要继承自 LitePalSupport类
LitePal开源数据库的创建_第1张图片

package com.example.sql_test;
import org.litepal.crud.LitePalSupport;

public class Person extends LitePalSupport {

    public void setAccount(String account) {
        this.account = account;
    }

    public void setPassword(int password) {
        this.password = password;
    }

    public String getAccount() {
        return account;
    }

    public int getPassword() {
        return password;
    }

    String account;
    int password;
}

第五步
将所创建的类添加到映射模型列表中去(即第二步提到的)


        

LitePal开源数据库的创建_第2张图片
至此,LitePal数据库的创建已经完成,你可以对其进行操作了

你可能感兴趣的:(Android)