Fix "constraint failed" error on "REPLACE INTO itemNotes" query when a standalone note in a collection becomes a child note remotely

This commit is contained in:
Dan Stillman 2009-10-18 16:03:54 +00:00
parent 66fbf3d008
commit 0b20a62935

View file

@ -1687,20 +1687,34 @@ Zotero.Item.prototype.save = function() {
+ ' set to true in Item.save()'); + ' set to true in Item.save()');
} }
sql = "REPLACE INTO itemNotes "
+ "(itemID, sourceItemID, note, title) VALUES (?,?,?,?)";
var parent = this.isNote() ? this.getSource() : null; var parent = this.isNote() ? this.getSource() : null;
var noteText = this._noteText; var noteText = this._noteText;
// Add <div> wrapper if not present // Add <div> wrapper if not present
if (!noteText.match(/^<div class="zotero-note znv[0-9]+">[\s\S]*<\/div>$/)) { if (!noteText.match(/^<div class="zotero-note znv[0-9]+">[\s\S]*<\/div>$/)) {
noteText = '<div class="zotero-note znv1">' + noteText + '</div>'; noteText = '<div class="zotero-note znv1">' + noteText + '</div>';
} }
var bindParams = [
this.id, var sql = "SELECT COUNT(*) FROM itemNotes WHERE itemID=?";
parent ? parent : null, if (Zotero.DB.valueQuery(sql, this.id)) {
noteText, sql = "UPDATE itemNotes SET sourceItemID=?, note=?, title=? WHERE itemID=?";
this._noteTitle var bindParams = [
]; parent ? parent : null,
noteText,
this._noteTitle,
this.id
];
}
// Row might not yet exist for new embedded attachment notes
else {
sql = "INSERT INTO itemNotes "
+ "(itemID, sourceItemID, note, title) VALUES (?,?,?,?)";
var bindParams = [
this.id,
parent ? parent : null,
noteText,
this._noteTitle
];
}
Zotero.DB.query(sql, bindParams); Zotero.DB.query(sql, bindParams);
} }