Any limitation to use SqliteDB to get approval of IOS app store deployment ..?

I was planning to use localStorage in my application to store some data now i have realized that it is not persistent. So I am going to use SQLite DB.

I know that , data stored in localStorage does not get backed up to iCloud and thus resulting in Apple rejecting your app for voilating the Data Storage Guidelines so i am using the below config settings for localStorage

<preference name="BackupWebStorage" value="none" />

Before starting to use the SQLiteDB , I want to know that, is there any limitation to use SQLite DB in IOS appstore deployment?

Thanks in advance.