android greenDao使用】的更多相关文章

Android GreenDao 保存 JavaBean 或者List <JavaBean>类型数据 简介 数据库存储数据基本上每个APP都有用到,GreenDAO 是一个将对象映射到 SQLite 数据库中的轻量且快速的 ORM 解决方案,至于用法这里不再多少,网上有很资料,这里主要说一下,利用GreenDao保存JavaBean类型或者List类型的数据. 举个栗子 { rating: { max: , average: 7.9, stars: ", min: }, genres…
最近自学做东西的时候用到了一个收藏的功能,然后我想把东西存放到SQLite当中,然而自己传值的时候都是用到的实体类,所以存起来也比较麻烦,所以从网上找到一个greenDao的开源框架非常火,不仅效率高,而且内存也占用的小,非常方便. 这里我就简单介绍一下如何配置,至于其他的增.删.改.查了,网上都很多,需要用到的小伙伴们自己去查吧!! 首先我们得明白,greenDao是一个Java代码模版的快速生成器,里面封装好了我们实体类的各种操作.所以 1.我们要用eclipse或者Myeclipse建一个…
转:http://blog.surecase.eu/using-greendao-with-android-studio-ide/ In this tutorial we will show you step by step how we have created sample application that presents our own Android Studio-GreenDao communication module. We tried to focus mainly on th…
关于如何建立类生成一个演示project.今天介绍如何使用. 这是ExampleDaoGeneratorproject代码,做了一些改动 /* * Copyright (C) 2011 Markus Junginger, greenrobot (http://greenrobot.de) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file exce…
看网上对greenDAO介绍的不错,今天就动手来试一把,看看好不好使. greenDAO 官方网站:http://greendao-orm.com/ 代码托管地址:https://github.com/greenrobot/greenDAO 相关介绍: greenDAO是一个可以帮助Android开发者快速将Java对象映射到SQLite数据库的表单中的ORM解决方案,通过使用一个简单的面向对象API,开发者可以对Java对象进行存储.更新.删除和查询. http://cms.csdnimg.c…
1.在build.gradle里添加相关依赖 apply plugin: 'org.greenrobot.greendao' buildscript { repositories { mavenCentral() } dependencies { classpath 'org.greenrobot:greendao-gradle-plugin:3.2.2' } } 注意位置 2.添加一个Dao @Entity public class User { @Id(autoincrement = tru…
组件化项目使用GreenDao时注意的事项: 1.要在组件化中的基础库(domain层)创建实体类: 2.如果sycn之后不能生产Dao文件,使用 Android Studio 的Gradle插件重新build项目,如图: build之后就会生成 GreenDao的相关文件了. 3.GreenDao还有一个巨坑的地方,就是你的Bean里的主键不要命名为 “id” ,比如酱紫: @Id private Long id; private String name; 然后根据 id 查询: 出现异常:…
最近在做项目的时候,为了方便测试人员测试,在应用中加入正式库和测试库切换的功能.为了防止正式库和测试库切换带来的数据冲突,切换的时候必须把当前的数据库清空.代码如下: package com.example.admin.greendaotest; import android.content.Context; import android.database.sqlite.SQLiteDatabase; import com.greendao.gen.DaoMaster; import org.g…
上一篇 总结了grendao 环境搭建以及简单的增删查改,接下来将全面解析框架的使用,基于上篇的orm模型(Note)数据库讲解 GreenDao的插入: 插入的方式有很多: daoSession.getNoteDao().insert(note); //插入note 如果note指定主键与表中已经存在了,就会发生异常(android.database.sqlite.SQLiteConstraintException: UNIQUE constraint failed: tb_note._id…
github:https://github.com/greenrobot/greenDAO 基本使用:https://toutiao.io/posts/yg1kyu/preview https://bng86.gitbooks.io/android-third-party-/content/greendao.html 先在依赖加上 compile 'org.greenrobot:greendao-generator:3.2.2'compile 'org.greenrobot:greendao:3…