From 68c457964a02d290f3fe225b090c549d664bb836 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Thu, 1 Jun 2023 01:11:21 +0200 Subject: Another big refactoring --- database/systems.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'database/systems.js') diff --git a/database/systems.js b/database/systems.js index e3822d3..337126c 100644 --- a/database/systems.js +++ b/database/systems.js @@ -1,7 +1,7 @@ import db from './db.js'; -const getSystemStatement = db.prepare(`SELECT data from systems where json_extract(data, '$.symbol') = ?;`); -const getSystemUpdatedStatement = db.prepare(`SELECT updated from systems where json_extract(data, '$.symbol') = ?;`); +const getSystemStatement = db.prepare(`SELECT data FROM systems WHERE json_extract(data, '$.symbol') = ?;`); +const getSystemUpdatedStatement = db.prepare(`SELECT updated FROM systems WHERE json_extract(data, '$.symbol') = ?;`); const setSystemStatement = db.prepare(`INSERT INTO systems(data) VALUES (json(?));`); const setSystemWaypointsStatement = db.prepare(`UPDATE systems SET data = (SELECT json_set(data, '$.waypoints', json(:waypoints)) FROM systems WHERE json_extract(data, '$.symbol') = :symbol), updated = :date WHERE json_extract(data, '$.symbol') = :symbol;`); @@ -61,7 +61,7 @@ export function setSystemWaypoints(symbol, waypoints) { date: new Date().toISOString(), symbol: symbol, waypoints: JSON.stringify(waypoints), - }); + }).changes; } catch (err) { console.log(err); return null; -- cgit v1.2.3