admin管理员组文章数量:1221286
I have an SQLite database for an Android Expo React Native app, using expo-sqlite 13.4.0. It just stops executing when using Android versions below 13. On iOS it works. cmds
variable has two indexes.
const db = EXPOSQLite.openDatabase(pathToDatabase);
for (let i = 0; i < cmds.length; i++) {
console.log(`>>> AccountDb [schema] >>> cmds >>> ${cmds[i].name}`);
await db.execAsync(cmds[i].up); // it also fails with exec (sync API).
}
I changed the package version and JavaScript implementation. I tried parallel and single execution. None of this was effective. Is it some native implementation's problem?
本文标签: androidWhy does my app become unresponsive on CREATE or DELETE commandsStack Overflow
版权声明:本文标题:android - Why does my app become unresponsive on CREATE or DELETE commands? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1739363049a2159910.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论