zoukankan      html  css  js  c++  java
  • Android stadio litepal

    今天看到技术交流群里有人招聘Android,要求会litepal.
    我立马百度了下。嗯,我的学习技术的精神,是值得称赞的。

    litepal就是操作数据库的一个框架。git地址:
    https://github.com/LitePalFramework/LitePal/blob/master/README.md

    使用很简单,readme都写好了。

    1.配置
    Android stadio gradle里面增加
    compile ‘org.litepal.android:core:1.3.1’

    2.清单文件配置
    在application节点增加
    android:name=”org.litepal.LitePalApplication”
    3.在src main 下的assets 新建litepal.xml
    里面格式:

    <litepal>
        <!--
            Define the database name of your application.
            By default each database name should be end with .db.
            If you didn't name your database end with .db,
            LitePal would plus the suffix automaticly for you.
            For example:
            <dbname value="demo" ></dbname>
        -->
        <dbname value="demo" ></dbname>
    
        <!--
            Define the version of your database. Each time you want
            to upgrade your database, the version tag would helps.
            Modify the models you defined in the mapping tag, and just
            make the version value plus one, the upgrade of database
            will be processed automaticly without concern.
                For example:
            <version value="1" ></version>
        -->
        <version value="1" ></version>
    
        <!--
            Define your models in the list with mapping tag, LitePal will
            create tables for each mapping class. The supported fields
            defined in models will be mapped into columns.
            For example:
            <list>
                <mapping class="com.test.model.Reader"></mapping>
                <mapping class="com.test.model.Magazine"></mapping>
            </list>
        -->
        <list>
            <mapping class="cn.xinyu.com.myapplication.db.Student"></mapping>
        </list>
    </litepal>

    4.写数据库的bean

    public class Student extends DataSupport {
        private String name;
        private int age;
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    }

    5.在litepal里面写上

    <mapping class="cn.xinyu.com.myapplication.db.Student"></mapping>

    6.

    //这句话就会生成所有litepal配置的表
      SQLiteDatabase db = Connector.getDatabase();
    
    
    
    

    7.增删改查自己看api吧。会Android原生的sqlite,学这个五分钟。

    Student student=new Student();
            student.setName("caoxinyu");
            student.setAge(18);
            student.save();
            List<Student> cursor=DataSupport.findAll(Student.class);
            System.out.println(cursor.size());
  • 相关阅读:
    BlockUI常见问题
    AssemblyInfo文件
    asp.net 如何让虚拟目录里面的webconfig不继承主目录config(转)
    jquery Ajax示例
    jQuery Ajax 实例 全解析 (转)
    如何在ASP.NET服务器控件库中嵌入JavaScript脚本文件(转)
    如何使用ASP.NET2.0的“嵌入的资源”(转)
    BlockUI对话框
    Jquery ajax参数设置
    What's production quality
  • 原文地址:https://www.cnblogs.com/caoxinyu/p/6647874.html
Copyright © 2011-2022 走看看