diff --git a/chrome/content/zotero/xpcom/db.js b/chrome/content/zotero/xpcom/db.js index f2a095c4e..73c9ae182 100644 --- a/chrome/content/zotero/xpcom/db.js +++ b/chrome/content/zotero/xpcom/db.js @@ -818,9 +818,10 @@ Zotero.DBConnection.prototype.logQuery = function (sql, params = [], options) { } -Zotero.DBConnection.prototype.tableExists = Zotero.Promise.coroutine(function* (table) { +Zotero.DBConnection.prototype.tableExists = Zotero.Promise.coroutine(function* (table, db) { yield this._getConnectionAsync(); - var sql = "SELECT COUNT(*) FROM sqlite_master WHERE type='table' AND tbl_name=?"; + var prefix = db ? db + '.' : ''; + var sql = `SELECT COUNT(*) FROM ${prefix}sqlite_master WHERE type='table' AND tbl_name=?`; var count = yield this.valueQueryAsync(sql, [table]); return !!count; });