考虑下封装类就好了,还有一些其他类型 比如if (type == Integer.class || type == int.class) {
stringBuffer.append(Objects.
requireNonNull(field.getAnnotation(DbField.class)).value())
.append(" INTEGER,");
} else if (type == Long.class || type == long.class) {
stringBuffer.append(Objects.
requireNonNull(field.getAnnotation(DbField.class)).value())
.append(" BIGINT,");
android自己动手封装Sqllite数据库废话: android数据库框架现在特别多,比如greenDAO,litepal都是各个大神封装好的,有时候自己只知道用,却不知道实现原理,于是自己准备动手撸一个。此框架是面...