数据库升级操作类 Created by sanders on 15/5/9.
| 7 | * Created by sanders on 15/5/9. |
| 8 | */ |
| 9 | public interface OnDBUpgrade { |
| 10 | |
| 11 | /** |
| 12 | * 数据库升级调用此方法 |
| 13 | * |
| 14 | * @param db |
| 15 | * @param oldVersion |
| 16 | * @param newVersion |
| 17 | * @return true是手动升级,false是自动升级 |
| 18 | */ |
| 19 | boolean onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion); |
| 20 | |
| 21 | } |
no outgoing calls
no test coverage detected