Android Studio 第四十九期 - Sqlite数据库四种写法
最近在看撸撸代码,他自己创了一种,网上有三种,分别是OpenDroid,greenDao,sugar,Sqlite原生写法,感觉都差不多,个人使用最优的是greenDao,下面开始介绍: 1.OpenDroid:优点是简单易懂,缺点是没有联合查询,DeleteAll细节操作: assets: 1 2 3 4 5 6 7 8 9 10 11 12 <?xmlversion= "1.0" encoding= "utf-8" ?> <open-droid> <namevalue= "Demo1" /> <versionvalue= "1" /> <mapping class = "com.example.p033_sqlite.domain.DemoUseBean" /> <!--<mapping class = "com.example.p033_sqlite.domain.DemoYuanBean" />--> <mapping class = "com.example.p033_sqli...
