feat(db): replace item insertion with upsert operation.
This commit is contained in:
parent
2e0b038e2a
commit
197e7be2a8
1 changed files with 11 additions and 11 deletions
22
src/db.rs
22
src/db.rs
|
@ -248,10 +248,15 @@ mod db_impl {
|
||||||
};
|
};
|
||||||
|
|
||||||
// 4. Item insertion
|
// 4. Item insertion
|
||||||
log!("[DB] Inserting item into items table");
|
log!("[DB] Upserting item");
|
||||||
match tx.execute(
|
tx.execute(
|
||||||
"INSERT INTO items (id, url_id, name, description, wikidata_id)
|
"INSERT INTO items (id, url_id, name, description, wikidata_id)
|
||||||
VALUES (?, ?, ?, ?, ?)",
|
VALUES (?, ?, ?, ?, ?)
|
||||||
|
ON CONFLICT(id) DO UPDATE SET
|
||||||
|
url_id = excluded.url_id,
|
||||||
|
name = excluded.name,
|
||||||
|
description = excluded.description,
|
||||||
|
wikidata_id = excluded.wikidata_id",
|
||||||
rusqlite::params![
|
rusqlite::params![
|
||||||
&item.id,
|
&item.id,
|
||||||
url_id,
|
url_id,
|
||||||
|
@ -259,13 +264,8 @@ mod db_impl {
|
||||||
&item.description,
|
&item.description,
|
||||||
&item.wikidata_id
|
&item.wikidata_id
|
||||||
],
|
],
|
||||||
) {
|
)?;
|
||||||
Ok(_) => log!("[DB] Item inserted successfully"),
|
log!("[DB] Item upserted successfully");
|
||||||
Err(e) => {
|
|
||||||
log!("[DB] Item insert error: {:?}", e);
|
|
||||||
return Err(e.into());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Property handling with enhanced logging
|
// Property handling with enhanced logging
|
||||||
log!("[DB] Processing {} properties", item.custom_properties.len());
|
log!("[DB] Processing {} properties", item.custom_properties.len());
|
||||||
for (prop, value) in &item.custom_properties {
|
for (prop, value) in &item.custom_properties {
|
||||||
|
|
Loading…
Add table
Reference in a new issue