Bug 452899 - Don't explicitly create the statement wrapper - storage does it for us; r=(dolske + sdwilsh)

This commit is contained in:
Paul O'Shannessy 2008-09-20 17:02:26 +02:00
Родитель a14c6b49fc
Коммит dd8f34b6a6
1 изменённых файлов: 2 добавлений и 7 удалений

Просмотреть файл

@ -947,12 +947,7 @@ LoginManagerStorage_mozStorage.prototype = {
// Memoize the statements
if (!this._dbStmts[query]) {
this.log("Creating new statement for query: " + query);
let stmt = this._dbConnection.createStatement(query);
let wrappedStmt = Cc["@mozilla.org/storage/statement-wrapper;1"].
createInstance(Ci.mozIStorageStatementWrapper);
wrappedStmt.initialize(stmt);
this._dbStmts[query] = wrappedStmt;
this._dbStmts[query] = this._dbConnection.createStatement(query);
}
// Replace parameters, must be done 1 at a time
if (params)
@ -1075,7 +1070,7 @@ LoginManagerStorage_mozStorage.prototype = {
// Finalize all statements to free memory, avoid errors later
for (let i = 0; i < this._dbStmts.length; i++)
this._dbStmts[i].statement.finalize();
this._dbStmts[i].finalize();
this._dbStmts = [];
// Close the connection, ignore 'already closed' error