-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
With SQLite INSERT OR REPLACE INTO
or
execute!(
"INSERT INTO node(host, id)"
"VALUES (" host, node.id ")"
"ON CONFLICT(host) DO UPDATE SET id = " node.id
)?;
Node {
host: Some(host),
id: Some(node.id),
..Default::default()
}.upsert_on("host")?;
upsert!(Node { host, id: node.id });
insert!(Node { host, id: node.id });
Oh dear.
Metadata
Metadata
Assignees
Labels
No labels