In my application I have a Sqlite database locally. When application starts, I am running a Thread and getting Json data from Server. After parsing these json data, I am creating a Sqlite db in my app.
It is in terms long running process and lots of code is written. Everything working fine,
But, I am just looking if there is another way around to directly populate my local db with this server db? basically a more robust solution.
Use OrmLite, kunalk is right. I have tried OrmLite myself, it is fast and easy. By using OrmLite my code is also shirked. OrmLite also have good documentation.