How store data from server in Andorid/iOS

Hey,
I’m starting with Ionic2 and in my app I retrive data from server by REST API (data stored in MySql, simple entries (name, category, date, description)).
How should I save data from server in app? Should I use locale storage or something better, some kind of DB.
I need to load data from server by REST API and then when you are offline still have data in phone.
I read about ionic SqlStorage is this good solution working on Andorid and iOS? Or could you recommend better.

Thanks

Use SqlStorage as described here:

http://ionicframework.com/docs/v2/api/platform/storage/SqlStorage/

LocalStorage may not be persistent and especially iOS platform may randomly wipe it out.

Further Questions? Ask!