0
我正在運行chrome 43.0
。在控制檯我正在運行下面的命令:數據庫語句在Google Chrome中不起作用
>> var db1 = openDatabase('testDB', '', 'my first database', 2 * 1024 * 1024, function(d){console.log(d);});
>> undefined
>> db1.transaction(function (tx) {
console.log(".....................");
console.log(tx.executeSql("INSERT INTO fileLog (fileName, bucketName) VALUES ('123','synergies')"));
});
>> undefined
.....................
undefined
問題是它沒有插入任何數據在fileLog
表。
選擇價值觀的問題是,有沒有錯誤回電話。 –