WebSQL 事务错误存储空间不足 space?

WebSQL transaction error not enough storage space?

我尝试创建 websql 数据库。 openDatabase 返回值不为空,但 database.transaction return 剩余存储空间不足 space 错误。

我有这个代码

const database = openDatabase("testDB","1.0","my test db",1024*1024*2);

database.transaction(
    function(tx) {
        tx.executeSql("CREATE TABLE IF NOT EXISTS todo (ID INTEGER PRIMARY KEY ASC,todo_item TEXT,due_date VARCHAR)", [], function(execErr) {
            console.log(execErr);
        });
    },

    function(txErr) {
        console.log(txErr);
    }
);

Chrome69.0.3497.100 Return 在 console.log(txErr); 这个错误

there was not enough remaining storage space, or the storage quota was reached and the user declined to allow more space

可能是什么原因?

我将数据库名称更改为随机词,将数据库版本更改为 0.1,这对我有用。