1

現在、phonegap アプリケーションを開発しています。

アプリがiOSでバックグラウンドに移行すると、sqlite dbでの挿入操作がロックされます(同じことがAndroidでも機能しました)。アプリケーションがフォアグラウンドにある場合、データベース操作はスムーズに機能します。

なぜこれが起こるのか、どうすればこれを処理できますか?

4

1 に答える 1

0

挿入に for ループ、本質的に非同期の Javascript を使用したと思います。

forループではなく、次のスタイルでバッチSQLクエリを実行する必要があります

デシベル = window.openDatabase("デモ", "1.0", "ビジネスアプリ", 200000);

insertIndex = 0;
var insertCounter = 0;
insertBatch = function(array, arrayLength, tableName, fieldQuestions, cb) {
    console.log("Inserting Record :" + insertCounter);
    if (insertIndex < arrayLength) {
        db.transaction(function(tx) {
            var sql = 'INSERT OR IGNORE INTO ' + tableName + ' VALUES ' + fieldQuestions;
            console.log("sql: " + sql);
            console.log("sql:------------- ");
            console.log(array[insertIndex]);

            tx.executeSql(sql, array[insertIndex],
                function(tx, res) {
                    insertIndex++;
                    console.log("Insert success");
                    insertBatch(array, arrayLength, tableName, fieldQuestions, cb);
                }, function() {
                    console.log("Insert failure");
                });
        });

    } else {
        insertIndex = 0;
        cb();
    }
}

db.transaction(populateDB, errorCB, successCB);


function populateDB(tx) {

    tx.executeSql('DROP TABLE IF EXISTS ?', ["news"], function() {
        console.log("success drop")
    }, function() {
        console.log("failure drop")
    });
    tx.executeSql('CREATE TABLE IF NOT EXISTS news (news_id INTEGER,news_header TEXT,news_content TEXT)');

}

function errorCB() {
    alert("Error: Init.js ErrorCB");
}

function successCB() {
    //alert();
    console.log('DB Created Success');
    var dataArray = []
    dataArray.push([1, "ONE", "First News Content"])
    dataArray.push([2, "TWO", "2 News Content"])
    dataArray.push([3, "THREE", "2 News Content"])
    dataArray.push([4, "FOUR", "4 News Content"])

    insertBatch(dataArray, dataArray.length, "news", "(?,?,?)", success)

    function success() {

        console.log("all success")
    }

}

したがって、すべてのexecuteSQ L 関数には、前のexecuteSQL 成功コールバックが必要です

于 2014-07-23T07:02:07.713 に答える