我想从WebSql更改为Indexeddb。但是,如何进行SQL查询,如
SELECT * FROM customers WHERE ssn = '444-44-4444' and emal = 'bill@bill@company.com'
SELECT * FROM customers WHERE ssn = '444-44-4444' and emal = 'bill@bill@company.com' and age = 30
SELECT * FROM customers WHERE ssn = '444-44-4444' and emal = 'bill@bill@company.com' and name = 'Bill'
etc
使用IndexedDB? 例如,我在读取indexedDb的documentation时注意到,所有示例当时只查询一个索引。所以你可以做到
var index = objectStore.index("ssn");
index.get("444-44-4444").onsuccess = function(event) {
alert("Name is " + event.target.result.name);
};
但我需要同时查询多个索引!
我还发现了一些有关compound indexes的有趣帖子,但只有在查询复合索引中的所有字段时才会有效。
答案 0 :(得分:17)
对于您的示例,复合索引仍然有效,但需要两个复合索引
objectStore.createIndex('ssn, email, age', ['ssn', 'email', 'age']); // corrected
objectStore.createIndex('ssn, email, name', ['ssn', 'email', 'name'])
并像这样查询
keyRange = IDBKeyRange.bound(
['444-44-4444', 'bill@bill@company.com'],
['444-44-4444', 'bill@bill@company.com', ''])
objectStore.index('ssn, email, age').get(keyRange)
objectStore.index('ssn, email, age').get(['444-44-4444', 'bill@bill@company.com', 30])
objectStore.index('ssn, email, name').get(['444-44-4444', 'bill@bill@company.com', 'Bill'])
索引可以按任何顺序排列,但如果最具体的话,它是最有效的。
或者,您也可以使用key joining。密钥连接需要四个(单个)索引。四个索引占用的存储空间更少,更通用。例如,以下查询需要另一个复合索引
SELECT * FROM customers WHERE ssn = '444-44-4444' and name = 'Bill' and age = 30
密钥加入仍适用于该查询。