Ionic 3 native-sqlite not working with ios platform

i need help for ios platform where it i have use cordova native-sqlite plugin, but in this case i observed with android platform in working very well and then i will after compile in ios platform then its not working with it…

can you please give me solution…

Android has a failback. Your code is incorrect but Android uses something else instead and iOS doesn’t have that so it fails.

My guess is that you’re trying to initialize SQLite without it being ready yet.
In app.component.ts use this code in the constructor:

this.platform.ready().then(() => {
    // initialize SQLite here
});