gpt4 book ai didi

javascript - 在 Thunderbird 中查询 SQLite 数据库

转载 作者:行者123 更新时间:2023-12-03 08:09:08 26 4
gpt4 key购买 nike

我想为 Thunderbird 制作一个使用 SQLite 数据库的小型插件。我用“SQLite Manager”创建了我的数据库。问题是,当我访问数据库时,我收到数据库为空的消息。但事实并非如此!

数据库:

----------------------------
| table1 | table2 | table3 |
----------------------------
| ... | ... | ... |
| ... | ... | ... |
----------------------------

这是 JavaScript 代码。它应该返回表的名称,但我得到 0。

  Components.utils.import("resource://gre/modules/Sqlite.jsm");
Components.utils.import("resource://gre/modules/Task.jsm");

Task.spawn(function() {
let db;
let result;
try {

db = yield Sqlite.openConnection({ path: "db.sqlite" });
result = yield db.execute("SELECT name FROM sqlite_master WHERE type='table'");

alert(result.length);

} catch (ex) {
alert("error: " + ex);
} finally {
if (db) yield db.close();
}
});

谁能告诉我我做错了什么?

是否可以导入并读取 Thunderbird 中已有的数据库?

谢谢!

最佳答案

查看source code for Sqlite.jsm ,路径始终相对于配置文件。但是,您可以访问模块的后台 channel 并从 openConnection 复制/粘贴代码。这是保存模块中可用的未导出符号的对象。像这样:

Components.utils.import("resource://gre/modules/FileUtils.jsm");
Components.utils.import("resource://gre/modules/Services.jsm");
var {classes: Cc, interfaces: Ci, utils: Cu} = Components;

function openConnection2(path) {
let Sqlite = Components.utils.import("resource://gre/modules/Sqlite.jsm", {});
let file = FileUtils.File(path);
let identifier = Sqlite.getIdentifierByPath(path);
let openedOptions = {};

return new Promise((resolve, reject) => {
let dbOptions = null;
Services.storage.openAsyncDatabase(file, dbOptions, (status, connection) => {
if (!connection) {

reject(new Error(`Could not open connection to ${path}: ${status}`));
return;
}
log.info("Connection opened");
try {
resolve(
new Sqlite.OpenedConnection(connection.QueryInterface(Ci.mozIStorageAsyncConnection),
identifier, openedOptions));
} catch (ex) {
reject(ex);
}
});
});
}

你可以在这里传递你自己的路径,这应该是完整路径。您可以通过将 chrome uri 转换为文件 uri 来访问数据库:

let uri = Services.io.newURI("chrome://myext/content/db.sqlite", null, null);
let registry = Cc['@mozilla.org/chrome/chrome-registry;1']
.getService(Ci.nsIChromeRegistry);
let path = registry.convertChromeURL(uri)
.QueryInterface(Ci.nsIFileURL)
.file.path;

yield openConnection2(path); // in your task

请注意,您需要在 install.rdf 中指定 em:unpack 以确保转换后的 uri 实际上是文件 uri,而不是 jar: uri。

关于javascript - 在 Thunderbird 中查询 SQLite 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34227200/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com