1

我正在尝试使用 JSON 数组填充我的 WebSQL 数据库(调用对象,调用myJSONObject数组costcodes)。

函数点击运行,数据库创建成功,但是数据没有插入到数据库中。它甚至不会抛出错误,它只是什么都不做。

我最初的想法是数据没有正确转义,但我不知道确切的位置/如何转义它。所以我很难过。

    localDB = null;

    function initDB()
    {
        if (localDB==null)
        {
            var shortName = 'Costcode';
            var version = '1.0';
            var displayName = 'Costcode';
            var maxSize = 217802; // in bytes
            localDB = window.openDatabase(shortName, version, displayName, maxSize);
        }

    }
            function buildTable()
    {
       var sQuery = 'CREATE TABLE IF NOT EXISTS Costcode ('+
                    'id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,' +
                    'cost_code_no VARCHAR NULL,' +
                    'row_unique_no VARCHAR NULL,' +
                    'cost_class_no VARCHAR NULL,' +
                    'Table_Version VARCHAR DEFAULT "1.0");';
        try
        {
            initDB();
            localDB.transaction(function(transaction)
            {
                transaction.executeSql(sQuery, []);
                console.log('sucess');
            });
        }
        catch (e)
        {
           alert("Error: Unable to create table 'x" + "' " + e + ".");
           return;
       }    
    }


 function exeSQLFast()
    {

                initDB();
                localDB.transaction(function(transaction)
                {
                    for (var x = 0; x <myJSONObject.costcodes.length; x++)
                    {

                        var costcodeno = myJSONObject.costcodes[x].cost_code_no;
                        var rowuniqueid = myJSONObject.costcodes[x].row_unique_id;
                        var costclassno = myJSONObject.costcodes[x].cost_class_no;
                        console.log(costcodeno);
                        console.log(rowuniqueid); 
                        console.log(costclassno);
                    transaction.executeSql('INSERT INTO Costcode (cost_code_no, row_unique_id, cost_class_no) VALUES (? , ? , ?)',
                     [costcodeno,
                     rowuniqueid,
                     costclassno]
                     , function(transaction, results)
                        {
                            console.log(costcodeno);
                            console.log('hooray');
                        }

                    )};
                    }
            )}

</script>
</head>

<body onLoad="buildTable();">
<input type="button" onClick="exeSQLFast();" value='button'>
</body>
</html>

控制台日志显示所有变量都被正确定义,但它没有运行插入语句。有任何想法吗?

这是一个例子myJSONObject.costcodes[2]

cost_class_no: "    3"
cost_code_no: "      1000"
row_unique_id: 335

好像有问题不是吗...

4

1 回答 1

0

问题是我在插入语句中调用了 row_unique_no 列 row_unique_id。现在我觉得自己很愚蠢。

但是,如果有人对如何正确填充 WebSQL 数据库感到好奇,那么您就是这样做的。只是不要输入错误的列名。

于 2013-02-27T19:08:13.093 回答