IBM Worklight API Cordova存储 - Sql错误:由于约束失败而无法执行语句(19约束失败)

时间:2013-10-14 11:43:52

标签: sqlite cordova ibm-mobilefirst

我的sqlite中的insert语句有问题。我有一个应用程序,它使用sql适配器从远程db(localhost)获取数据并将它们存储到设备中。我已经在设备中创建了一个db,它与“远程”db的模式相同。我想将所有记录从远程数据库复制到设备数据库,但是当我使用api cordova s​​torare运行insert语句时,由于存在constaint故障(19约束失败),错误无法执行语句。这很奇怪。

这里是在设备上创建db的函数

function createLocalDb(size){

    function createDB(tx) {
         tx.executeSql("CREATE TABLE IF NOT EXISTS canti (" +
                       "_id INTEGER PRIMARY KEY AUTOINCREMENT, " +
                       "titolo VARCHAR(50) NOT NULL, " +
                       "autore VARCHAR(50) NOT NULL, " +
                       "id_categoria VARCHAR(50), " +
                       "testo TEXT," +
                       "UNIQUE(titolo,autore))");
         tx.executeSql("CREATE TABLE IF NOT EXISTS categorie (" +
                       "_id INTEGER PRIMARY KEY AUTOINCREMENT, " +
                       "titolo VARCHAR(50) NOT NULL UNIQUE, " +
                       "attiva INTEGER(1) DEFAULT '0')");

    }

    function errorCB(err) {
        WL.Logger.debug("Error processing SQL on createLocalDb: " + err.message);
    }

    function successCB() {
        WL.Logger.debug("Database created correctly");

        WL.Client.invokeProcedure({
            adapter : 'DbConnect',
            procedure : 'getCanti',
            parameters: []
        }, {
            onSuccess : success,
            onFailure : failure
        });

        function success(result){
            WL.Logger.debug("Success on invoking getCanti procedure");
            populateCanti(result);
        }
        function failure(result){
            WL.Logger.debug("Failure on invoking getCanti procedure");
        }

        WL.Client.invokeProcedure({
            adapter : 'DbConnect',
            procedure : 'getCategorie',
            parameters: []
        }, {
            onSuccess : success2,
            onFailure : failure2
        });

        function success2(result){
            WL.Logger.debug("Success on invoking getCategorie procedure");
            populateCategorie(result);
        }
        function failure2(result){
            WL.Logger.debug("Failure on invoking getCategorie procedure");
        }

    }   

    if(size>0){
        var db = window.openDatabase("db_canti", "1.0", "db_canti", size);
        db.transaction(createDB, errorCB, successCB);
    }
    else{
        WL.Logger.debug("Cannot create database with size 0");
    }
}

这里有两个填充表格的函数:

function populateCanti(item){

    var db = window.openDatabase("db_canti", "1.0", "db_canti", size);
    db.transaction(populateDB, errorCB, successCB);

    function populateDB(tx){
        for(var i=0;i<item.invocationResult.resultSet.length;i++){
            WL.Logger.debug(i+")Sto inserendo " + item.invocationResult.resultSet[i].titolo + "," + item.invocationResult.resultSet[i].autore + "," + item.invocationResult.resultSet[i].id_categoria);
            tx.executeSql("INSERT INTO canti(titolo,autore,id_categoria,testo) " +
                    "VALUES('"+item.invocationResult.resultSet[i].titolo+"','" +
                            +item.invocationResult.resultSet[i].autore+"','" +
                            +item.invocationResult.resultSet[i].id_categoria+"','" +
                            +item.invocationResult.resultSet[i].testo+"')");
        }
    }

    function successCB(err) {
        WL.Logger.debug("Table 'canti' OK");
        checkLocalDb();
    }

    function errorCB(err) {
        WL.Logger.debug("Error processing SQL on populateCanti: " + err.message);
    }

}

function populateCategorie(item){

    var db = window.openDatabase("db_canti", "1.0", "db_canti", size);
    db.transaction(populateDB, errorCB, successCB);

    function populateDB(tx){
        for(var i=0;i<item.invocationResult.resultSet.length;i++){
            tx.executeSql("INSERT INTO categorie(titolo,attiva) " +
                    "VALUES('"+item.invocationResult.resultSet[i].titolo+"','" +
                            +item.invocationResult.resultSet[i].attiva+"')");
        }
    }

    function successCB(err) {
        WL.Logger.debug("Table 'categorie' OK");
    }

    function errorCB(err) {
        WL.Logger.debug("Error processing SQL on populateCategorie: " + err.message);
    }

}

此外,表categorie捕获了错误,但插入显然有效,因为当我在浏览器上看到Web存储时,其中有19条记录。

2 个答案:

答案 0 :(得分:3)

如果表中的记录 ,则UNIQUE约束阻止您插入重复项。

为防止出现重复项错误,请将INSERT替换为INSERT OR IGNORE

答案 1 :(得分:0)

只需删除您的表并重新创建它,或者更安全的一面检查您尝试插入的所有行是否存在...

之前我遇到过类似的情况,我所做的只是放下桌子并再次创建它。我意识到的是,当我更新表行时,我试图插入一个确实存在或已更改的表列。